Skip to content

Commit

Permalink
release: 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Mar 1, 2017
1 parent 5cf2054 commit 106b6e5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
### [Unreleased][unreleased]

### [1.1.1] - 2016/02/28

##### Added

- Expose the underlying `first_coordinator` and `wait_schema_consensus`
functions from the Cluster module.

### [1.1.0] - 2016/01/12

##### Changed
Expand Down Expand Up @@ -286,7 +293,8 @@ now be called with `:`.

- `set_keyspace` erroring on names with capital letters.

[unreleased]: https://github.com/thibaultCha/lua-cassandra/compare/1.1.0...HEAD
[unreleased]: https://github.com/thibaultCha/lua-cassandra/compare/1.1.1...HEAD
[1.1.1]: https://github.com/thibaultCha/lua-cassandra/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/thibaultCha/lua-cassandra/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/thibaultCha/lua-cassandra/compare/0.5.1...1.0.0
[0.5.1]: https://github.com/thibaultCha/lua-cassandra/compare/0.5.0...0.5.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,4 +238,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-1.1.0-blue.svg?style=flat
[badge-version-image]: https://img.shields.io/badge/version-1.1.1-blue.svg?style=flat
4 changes: 2 additions & 2 deletions lib/cassandra/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- Single host module for PUC Lua, LuaJIT and OpenResty.
-- @module cassandra
-- @author thibaultcha
-- @release 1.1.0
-- @release 1.1.1

local socket = require 'cassandra.socket'
local cql = require 'cassandra.cql'
Expand Down Expand Up @@ -74,7 +74,7 @@ local find = string.find
-- @table cassandra.auth_providers

local _Host = {
_VERSION = '1.1.0',
_VERSION = '1.1.1',
cql_errors = cql.errors,
consistencies = cql.consistencies,
auth_providers = require 'cassandra.auth'
Expand Down
4 changes: 2 additions & 2 deletions lib/resty/cassandra/cluster.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- Cluster module for OpenResty.
-- @module resty.cassandra.cluster
-- @author thibaultcha
-- @release 1.1.0
-- @release 1.1.1

local resty_lock = require 'resty.lock'
local cassandra = require 'cassandra'
Expand Down Expand Up @@ -221,7 +221,7 @@ end
-----------

local _Cluster = {
_VERSION = '1.1.0',
_VERSION = '1.1.1',
}

_Cluster.__index = _Cluster
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "lua-cassandra"
version = "1.1.0-0"
version = "1.1.1-0"
source = {
url = "git://github.com/thibaultcha/lua-cassandra",
tag = "1.1.0"
tag = "1.1.1"
}
description = {
summary = "A pure Lua client library for Apache Cassandra",
Expand Down

0 comments on commit 106b6e5

Please sign in to comment.