Skip to content

Commit

Permalink
Release 13-2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Oct 12, 2021
1 parent 6ad28d6 commit d1d0186
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All versions are tagged by the major Postgres version, plus an individual semver for this library itself.

## 13-2.1.0 2021-10-12

* Normalize: add funcname error object [#121](https://github.com/pganalyze/libpg_query/pull/121)
* Normalize: Match GROUP BY against target list and re-use param refs [#124](https://github.com/pganalyze/libpg_query/pull/124)
* PL/pgSQL: Setup namespace items for parameters, support RECORD types [#123](https://github.com/pganalyze/libpg_query/pull/123)
- This significantly improves parsing for PL/pgSQL functions, to the extent
that most functions should now parse successfully


## 13-2.0.7 2021-07-16

* Normalize: Don't modify constants in TypeName typmods/arrayBounds fields (#118)
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.0.7
VERSION = 2.1.0
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 d1d0186

Please sign in to comment.