diff --git a/CHANGELOG.md b/CHANGELOG.md index c53788e..cbba032 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.16 +### 0.16.1 + +- fix: Use bind params regex from sqlalchemy while escaping colons. +- fix: Quote the Postgres identifiers mentioned in DROP TRIGGER. +- feat: Add REFERENCING OLD/NEW TABLE support to pg triggers. + ### 0.16.0 - feat: Add parameters and volatility to Function. - fix: Filter snowflake schema query to current_database(). diff --git a/pyproject.toml b/pyproject.toml index 3df504f..ff1f86d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sqlalchemy-declarative-extensions" -version = "0.16.0" +version = "0.16.1" authors = [ {name = "Dan Cardin", email = "ddcardin@gmail.com"}, ]