diff --git a/CHANGELOG.md b/CHANGELOG.md index 3279b49..f3c4b60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ ### [Unreleased][unreleased] +### [0.4.2] - 2016/01/16 + +##### Fixed + +- Correct timeout check for schema consensus. Prior to this, schema consensus systematically timed out after 0.5s. [#24](https://github.com/thibaultCha/lua-cassandra/pull/24) + +##### Added + +- More documentation. +- Stronger test suite and CI. + ### [0.4.1] - 2015/12/18 ##### Fixed @@ -99,7 +110,8 @@ 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.4.1...HEAD +[unreleased]: https://github.com/thibaultCha/lua-cassandra/compare/0.4.2...HEAD +[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 [0.4.0]: https://github.com/thibaultCha/lua-cassandra/compare/0.3.6...0.4.0 [0.3.6]: https://github.com/thibaultCha/lua-cassandra/compare/0.3.5...0.3.6 diff --git a/README.md b/README.md index 2805877..9ae966f 100644 --- a/README.md +++ b/README.md @@ -213,5 +213,5 @@ $ 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.4.1-blue.svg?style=flat +[badge-version-image]: https://img.shields.io/badge/version-0.4.2-blue.svg?style=flat diff --git a/lua-cassandra-0.4.1-0.rockspec b/lua-cassandra-0.4.2-0.rockspec similarity index 98% rename from lua-cassandra-0.4.1-0.rockspec rename to lua-cassandra-0.4.2-0.rockspec index aeb6ec6..0feccff 100644 --- a/lua-cassandra-0.4.1-0.rockspec +++ b/lua-cassandra-0.4.2-0.rockspec @@ -1,8 +1,8 @@ package = "lua-cassandra" -version = "0.4.1-0" +version = "0.4.2-0" source = { url = "git://github.com/thibaultCha/lua-cassandra", - tag = "0.4.1" + tag = "0.4.2" } description = { summary = "Feature-rich client library for Cassandra", diff --git a/src/cassandra.lua b/src/cassandra.lua index 31d04c1..b7790c5 100644 --- a/src/cassandra.lua +++ b/src/cassandra.lua @@ -70,7 +70,7 @@ local DEFAULT_PROTOCOL_VERSION = 3 --- Cassandra local Cassandra = { - _VERSION = "0.4.1", + _VERSION = "0.4.2", DEFAULT_PROTOCOL_VERSION = DEFAULT_PROTOCOL_VERSION, MIN_PROTOCOL_VERSION = MIN_PROTOCOL_VERSION }