Skip to content

Commit

Permalink
release: 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Jan 16, 2016
1 parent 555c0d0 commit 31db697
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/cassandra.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 31db697

Please sign in to comment.