From 1ed2fb28a3c2c762230ba3fd2bdc72397043fb3c Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Mon, 3 Apr 2017 14:49:38 -0700 Subject: [PATCH] release: 1.2.1 --- CHANGELOG.md | 11 ++++++++++- README.md | 2 +- lib/cassandra/init.lua | 4 ++-- lib/resty/cassandra/cluster.lua | 4 ++-- ...1.2.0-0.rockspec => lua-cassandra-1.2.1-0.rockspec | 4 ++-- 5 files changed, 17 insertions(+), 8 deletions(-) rename lua-cassandra-1.2.0-0.rockspec => lua-cassandra-1.2.1-0.rockspec (97%) diff --git a/CHANGELOG.md b/CHANGELOG.md index dadd20d..3e46b1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index 921cdcd..0b66549 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lib/cassandra/init.lua b/lib/cassandra/init.lua index 9949c5e..8a15a7e 100644 --- a/lib/cassandra/init.lua +++ b/lib/cassandra/init.lua @@ -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' @@ -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' diff --git a/lib/resty/cassandra/cluster.lua b/lib/resty/cassandra/cluster.lua index e6a4f0b..24f874b 100644 --- a/lib/resty/cassandra/cluster.lua +++ b/lib/resty/cassandra/cluster.lua @@ -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' @@ -231,7 +231,7 @@ end ----------- local _Cluster = { - _VERSION = '1.2.0', + _VERSION = '1.2.1', } _Cluster.__index = _Cluster diff --git a/lua-cassandra-1.2.0-0.rockspec b/lua-cassandra-1.2.1-0.rockspec similarity index 97% rename from lua-cassandra-1.2.0-0.rockspec rename to lua-cassandra-1.2.1-0.rockspec index b3202f2..894e9ef 100644 --- a/lua-cassandra-1.2.0-0.rockspec +++ b/lua-cassandra-1.2.1-0.rockspec @@ -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",