From 8dda61e74d9e464c7b0e0e91b5d88c0f945995d3 Mon Sep 17 00:00:00 2001 From: Andrey Ponomarenko Date: Wed, 26 Apr 2017 10:13:18 +0300 Subject: [PATCH] Release 1.1.4 --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- lib/pg_ltree/version.rb | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd0a252..50029d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.1.4 + +* [ADDED] Adds method to support ltxtquery value for searching ([#17](https://github.com/sjke/pg_ltree/pull/17) by [@sb1752](https://github.com/sb1752) +* [IMPROVE] Updated dependency version (Rails 5.1 and Pg adapter 0.21) ([#16](https://github.com/sjke/pg_ltree/pull/16) by [@sb1752](https://github.com/sb1752) + ## 1.1.3 * [ADDED] node instance `height` method ([#6](https://github.com/sjke/pg_ltree/pull/6) by [@caulfield](https://github.com/caulfield)) diff --git a/README.md b/README.md index 18b5211..5870cc4 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ It uses a implementation based around PostgreSQL's [ltree](http://www.postgresql | | | |---------------|:--------------------------------:| | **Author** | Andrei Panamarenka | -| **Version** | 1.1.3 (March 10, 2016) | +| **Version** | 1.1.4 (April 27, 2017) | | **License** | Released under the MIT license. | @@ -27,7 +27,7 @@ It uses a implementation based around PostgreSQL's [ltree](http://www.postgresql Add this line to your application's Gemfile: - gem 'pg_ltree', '1.1.3' + gem 'pg_ltree', '1.1.4' And then execute: diff --git a/lib/pg_ltree/version.rb b/lib/pg_ltree/version.rb index 99cc133..0f563ae 100644 --- a/lib/pg_ltree/version.rb +++ b/lib/pg_ltree/version.rb @@ -1,7 +1,7 @@ -# Organise ActiveRecord model into a tree structure with PostgreSQL LTree +# Organize ActiveRecord model into a tree structure with PostgreSQL LTree # # @author a.ponomarenko module PgLtree # Gem Version - VERSION = '1.1.3'.freeze + VERSION = '1.1.4'.freeze end