Skip to content

Commit

Permalink
Merge branch 'release/0.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Apr 11, 2016
2 parents b1a9a1b + 01d64af commit a700df4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 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.1] - 2016/04/11

##### Fixed

- Use the `default_port` option when connecting to peers instead of the CQL default (`9042`). [#49](https://github.com/thibaultCha/lua-cassandra/pull/49)

### [0.5.0] - 2016/02/02

##### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,5 +217,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.5.0-blue.svg?style=flat
[badge-version-image]: https://img.shields.io/badge/version-0.5.1-blue.svg?style=flat

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "lua-cassandra"
version = "0.5.0-0"
version = "0.5.1-0"
source = {
url = "git://github.com/thibaultCha/lua-cassandra",
tag = "0.5.0"
tag = "0.5.1"
}
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 @@ -68,7 +68,7 @@ local DEFAULT_PROTOCOL_VERSION = 3
--- Cassandra

local Cassandra = {
_VERSION = "0.5.0",
_VERSION = "0.5.1",
DEFAULT_PROTOCOL_VERSION = DEFAULT_PROTOCOL_VERSION,
MIN_PROTOCOL_VERSION = MIN_PROTOCOL_VERSION
}
Expand Down

0 comments on commit a700df4

Please sign in to comment.