From 7eb584d6424b257bfb24de69d688f06836386efe Mon Sep 17 00:00:00 2001 From: Lukas Fittl Date: Tue, 3 May 2022 16:29:17 -0700 Subject: [PATCH] Release 13-2.1.1 (#138) --- CHANGELOG.md | 13 +++++++++++++ Makefile | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71b43628..61240ec7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All versions are tagged by the major Postgres version, plus an individual semver for this library itself. +## 13-2.1.1 2022-05-03 + +* PL/pgSQL parser + - Add support for Assert [#135](https://github.com/pganalyze/libpg_query/pull/135) + - Add support for SET, COMMIT, ROLLBACK and CALL [#130](https://github.com/pganalyze/libpg_query/pull/130) +* Add support for parsing more operators that include a `?` character (special cased to support old pg_stat_statements query texts) + - ltree extension [#136](https://github.com/pganalyze/libpg_query/pull/136) + - promscale extension [#133](https://github.com/pganalyze/libpg_query/pull/133) +* Deparser improvements + - Prefix errors with "deparse", and remove some asserts [#131](https://github.com/pganalyze/libpg_query/pull/131) + - Fix potential segfault when passing invalid protobuf (RawStmt without Stmt) [#128](https://github.com/pganalyze/libpg_query/pull/128) + + ## 13-2.1.0 2021-10-12 * Normalize: add funcname error object [#121](https://github.com/pganalyze/libpg_query/pull/121) diff --git a/Makefile b/Makefile index bc864a56..d8c7da18 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ PG_VERSION = 13.3 PG_VERSION_MAJOR = $(call word-dot,$(PG_VERSION),1) PROTOC_VERSION = 3.14.0 -VERSION = 2.1.0 +VERSION = 2.1.1 VERSION_MAJOR = $(call word-dot,$(VERSION),1) VERSION_MINOR = $(call word-dot,$(VERSION),2) VERSION_PATCH = $(call word-dot,$(VERSION),3)