From c2b18590107a30e7c3195a95a114adc3caea9b22 Mon Sep 17 00:00:00 2001 From: Lukas Fittl Date: Thu, 4 Oct 2018 12:37:09 -0700 Subject: [PATCH] Release 1.1.0 --- CHANGELOG.md | 17 +++++++++++++++++ Gemfile.lock | 2 +- lib/pg_query/version.rb | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b546755..76690daf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 1.1.0 2018-10-04 + +* Deparsing improvements by [@herwinw](https://github.com/herwinw) + * Add NULLS FIRST/LAST to ORDER BY [#95](https://github.com/lfittl/pg_query/pull/95) + * VACUUM [#97](https://github.com/lfittl/pg_query/pull/97) + * UPDATE with multiple columns [#99](https://github.com/lfittl/pg_query/pull/99) + * DISTINCT ON [#101](https://github.com/lfittl/pg_query/pull/101) + * CREATE TABLE AS [#102](https://github.com/lfittl/pg_query/pull/102) + * SQL value functions [#103](https://github.com/lfittl/pg_query/pull/103) + * LOCK [#105](https://github.com/lfittl/pg_query/pull/105) + * EXPLAIN [#107](https://github.com/lfittl/pg_query/pull/107) + * COPY [#108](https://github.com/lfittl/pg_query/pull/108) + * DO [#109](https://github.com/lfittl/pg_query/pull/109) +* Ignore pg_query.so in git checkout [#110](https://github.com/lfittl/pg_query/pull/110) [@herwinw](https://github.com/herwinw) +* Prefer __dir__ over File.dirname(__FILE__) [#110](https://github.com/lfittl/pg_query/pull/104) [@herwinw](https://github.com/herwinw) + + ## 1.0.2 2018-04-11 * Deparsing improvements diff --git a/Gemfile.lock b/Gemfile.lock index 7086cefb..3a7b9c97 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - pg_query (1.0.2) + pg_query (1.1.0) GEM remote: https://rubygems.org/ diff --git a/lib/pg_query/version.rb b/lib/pg_query/version.rb index c4a0ef16..a1ebf18e 100644 --- a/lib/pg_query/version.rb +++ b/lib/pg_query/version.rb @@ -1,3 +1,3 @@ class PgQuery - VERSION = '1.0.2'.freeze + VERSION = '1.1.0'.freeze end