diff --git a/CHANGELOG.md b/CHANGELOG.md index f4f6564f..e993d5ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ -# Changelog +## Version 1.1.0 + - Added support for simple pre-anonymization `WHERE` clauses. + - Added `sum` and `avg` aggregrators. + - Added `*_noise` variants of aggregrators. + - Added `count_histogram` aggregrator. - Allow more metadata discovery queries. + - Various tweaks and fixes. ## Version 1.0.3 - Reject unsupported column types during AID labeling. diff --git a/META.json b/META.json index c8902b94..2cca3119 100644 --- a/META.json +++ b/META.json @@ -2,37 +2,37 @@ "name": "pg_diffix", "abstract": "A PostgreSQL extension for strong dynamic anonymization.", "description": "Diffix is a bundled set of mechanisms for anonymizing structured data. Open Diffix is a project to make Diffix anonymization free and open. More details at open-diffix.org.", - "version": "1.0.2", + "version": "1.1.0", "maintainer": "Open Diffix ", "license": { "restricted": "https://github.com/diffix/pg_diffix/blob/master/LICENSE.md" }, "release_status": "stable", "provides": { - "pg_diffix": { - "abstract": "A PostgreSQL extension for strong dynamic anonymization.", - "file": "src/pg_diffix.c", - "docfile": "docs/user_guide.md", - "version": "1.0.2" - } + "pg_diffix": { + "abstract": "A PostgreSQL extension for strong dynamic anonymization.", + "file": "src/pg_diffix.c", + "docfile": "docs/user_guide.md", + "version": "1.1.0" + } }, "prereqs": { "runtime": { - "requires": { - "PostgreSQL": "13.0.0" - } + "requires": { + "PostgreSQL": "13.0.0" + } } }, "resources": { "homepage": "https://open-diffix.org/", "bugtracker": { - "web": "https://github.com/diffix/pg_diffix/issues", - "mailto": "hello@open-diffix.org" + "web": "https://github.com/diffix/pg_diffix/issues", + "mailto": "hello@open-diffix.org" }, "repository": { - "url": "git://github.com/diffix/pg_diffix.git", - "web": "https://github.com/diffix/pg_diffix/", - "type": "git" + "url": "git://github.com/diffix/pg_diffix.git", + "web": "https://github.com/diffix/pg_diffix/", + "type": "git" } }, "tags": [ @@ -43,9 +43,9 @@ "privacy", "privacy-protection", "privacy-tools" - ], + ], "meta-spec": { - "version": "1.0.0", - "url": "https://pgxn.org/meta/spec.txt" + "version": "1.0.0", + "url": "https://pgxn.org/meta/spec.txt" } } \ No newline at end of file