Skip to content

Commit

Permalink
Release 13-2.1.1 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl authored May 3, 2022
1 parent acca9da commit 7eb584d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7eb584d

Please sign in to comment.