Skip to content

Commit

Permalink
bump to 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Sep 1, 2016
1 parent baf0210 commit 40f1706
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### [Unreleased][unreleased]

### [0.5.4] - 2016/08/31

##### Added

- Support for Cassandra 3.x (prefer lua-cassandra 1.0)

### [0.5.3] - 2016/08/19

##### Added
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lua-cassandra ![Module Version][badge-version-image] [![Build Status][badge-travis-image]][badge-travis-url] [![Coverage Status][badge-coveralls-image]][badge-coveralls-url]

A pure Lua client library for Apache Cassandra (2.0+), compatible with [ngx_lua]/[OpenResty] and plain Lua.
A pure Lua client library for Apache Cassandra, compatible with [ngx_lua]/[OpenResty] and plain Lua.

It is implemented following the example of the official Datastax drivers, and tries to offer the same behaviors, options and features.

Expand Down Expand Up @@ -215,5 +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.3-blue.svg?style=flat

[badge-version-image]: https://img.shields.io/badge/version-0.5.4-blue.svg?style=flat
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "lua-cassandra"
version = "0.5.3-0"
version = "0.5.4-0"
source = {
url = "git://github.com/thibaultCha/lua-cassandra",
tag = "0.5.3"
tag = "0.5.4"
}
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.3",
_VERSION = "0.5.4",
DEFAULT_PROTOCOL_VERSION = DEFAULT_PROTOCOL_VERSION,
MIN_PROTOCOL_VERSION = MIN_PROTOCOL_VERSION
}
Expand Down

0 comments on commit 40f1706

Please sign in to comment.