Skip to content

Commit

Permalink
release: 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Apr 3, 2017
1 parent 8b7d505 commit 1ed2fb2
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
### [Unreleased][unreleased]

### [1.2.1] - 2017/04/03

##### Fixed

- Force the Nginx time to be updated when checking for schema consensus
timeout.
[#90](https://github.com/thibaultcha/lua-cassandra/pull/90)

### [1.2.0] - 2017/03/24

##### Added
Expand Down Expand Up @@ -300,7 +308,8 @@ now be called with `:`.

- `set_keyspace` erroring on names with capital letters.

[unreleased]: https://github.com/thibaultCha/lua-cassandra/compare/1.2.0...HEAD
[unreleased]: https://github.com/thibaultCha/lua-cassandra/compare/1.2.1...HEAD
[1.2.1]: https://github.com/thibaultCha/lua-cassandra/compare/1.2.0...1.2.1
[1.2.0]: https://github.com/thibaultCha/lua-cassandra/compare/1.1.1...1.2.0
[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
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.2.0-blue.svg?style=flat
[badge-version-image]: https://img.shields.io/badge/version-1.2.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.2.0
-- @release 1.2.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.2.0',
_VERSION = '1.2.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.2.0
-- @release 1.2.1

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

local _Cluster = {
_VERSION = '1.2.0',
_VERSION = '1.2.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.2.0-0"
version = "1.2.1-0"
source = {
url = "git://github.com/thibaultcha/lua-cassandra",
tag = "1.2.0"
tag = "1.2.1"
}
description = {
summary = "A pure Lua client library for Apache Cassandra",
Expand Down

0 comments on commit 1ed2fb2

Please sign in to comment.