From fc5dfe7c9c6202b2b049b7dec0a7e116d7403fd9 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Mon, 23 Jan 2017 15:04:36 -0800 Subject: [PATCH] release: 0.5.5 --- CHANGELOG.md | 14 +++++++++++++- README.md | 2 +- ....4-0.rockspec => lua-cassandra-0.5.5-0.rockspec | 4 ++-- src/cassandra.lua | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) rename lua-cassandra-0.5.4-0.rockspec => lua-cassandra-0.5.5-0.rockspec (98%) diff --git a/CHANGELOG.md b/CHANGELOG.md index d30f305..1ef3fc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ### [Unreleased][unreleased] +### [0.5.5] - 2017/01/23 + +##### Fixed + +- In this old (< 1.0) version of the driver, sockets were never reused more than once because they were only +put back in the connection pool on their first use. + ### [0.5.4] - 2016/08/31 ##### Added @@ -165,7 +172,12 @@ Initial release. Forked from jbochi/lua-resty-cassandra v0.5.7 with some additio - `set_keyspace` erroring on names with capital letters. -[unreleased]: https://github.com/thibaultCha/lua-cassandra/compare/0.5.0...HEAD +[unreleased]: https://github.com/thibaultCha/lua-cassandra/compare/0.5.5...HEAD +[0.5.5]: https://github.com/thibaultCha/lua-cassandra/compare/0.5.4...0.5.5 +[0.5.4]: https://github.com/thibaultCha/lua-cassandra/compare/0.5.3...0.5.4 +[0.5.3]: https://github.com/thibaultCha/lua-cassandra/compare/0.5.2...0.5.3 +[0.5.2]: https://github.com/thibaultCha/lua-cassandra/compare/0.5.1...0.5.2 +[0.5.1]: https://github.com/thibaultCha/lua-cassandra/compare/0.5.0...0.5.1 [0.5.0]: https://github.com/thibaultCha/lua-cassandra/compare/0.4.2...0.5.0 [0.4.2]: https://github.com/thibaultCha/lua-cassandra/compare/0.4.1...0.4.2 [0.4.1]: https://github.com/thibaultCha/lua-cassandra/compare/0.4.0...0.4.1 diff --git a/README.md b/README.md index 3149537..f5301c6 100644 --- a/README.md +++ b/README.md @@ -215,4 +215,4 @@ $ make doc [badge-coveralls-url]: https://coveralls.io/r/thibaultCha/lua-cassandra?branch=master [badge-coveralls-image]: https://coveralls.io/repos/thibaultCha/lua-cassandra/badge.svg?branch=master&style=flat -[badge-version-image]: https://img.shields.io/badge/version-0.5.4-blue.svg?style=flat +[badge-version-image]: https://img.shields.io/badge/version-0.5.5-blue.svg?style=flat diff --git a/lua-cassandra-0.5.4-0.rockspec b/lua-cassandra-0.5.5-0.rockspec similarity index 98% rename from lua-cassandra-0.5.4-0.rockspec rename to lua-cassandra-0.5.5-0.rockspec index 9070692..c7d43de 100644 --- a/lua-cassandra-0.5.4-0.rockspec +++ b/lua-cassandra-0.5.5-0.rockspec @@ -1,8 +1,8 @@ package = "lua-cassandra" -version = "0.5.4-0" +version = "0.5.5-0" source = { url = "git://github.com/thibaultCha/lua-cassandra", - tag = "0.5.4" + tag = "0.5.5" } description = { summary = "Feature-rich client library for Cassandra", diff --git a/src/cassandra.lua b/src/cassandra.lua index 252e0bf..fa0422e 100644 --- a/src/cassandra.lua +++ b/src/cassandra.lua @@ -69,7 +69,7 @@ local DEFAULT_PROTOCOL_VERSION = 3 --- Cassandra local Cassandra = { - _VERSION = "0.5.4", + _VERSION = "0.5.5", DEFAULT_PROTOCOL_VERSION = DEFAULT_PROTOCOL_VERSION, MIN_PROTOCOL_VERSION = MIN_PROTOCOL_VERSION }