Skip to content

Commit

Permalink
release: 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Jan 23, 2017
1 parent 44f2763 commit fc5dfe7
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,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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/cassandra.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit fc5dfe7

Please sign in to comment.