diff --git a/CHANGELOG.md b/CHANGELOG.md index faa65a6..325d4cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [v1.1] - 2019-04-16 + +### Added +- Support for ACL (Access Control List). + +### Removed +- The query method from the client class has been deprecated. This was done in + order to match the rest of the clients and to make it explicit that creating a + transaction is required to query Dgraph. + ## [v1.0.3] - 2019-03-20 ### Added diff --git a/pydgraph/meta.py b/pydgraph/meta.py index 710d79e..2ad3e23 100644 --- a/pydgraph/meta.py +++ b/pydgraph/meta.py @@ -14,4 +14,4 @@ """Metadata about this package.""" -VERSION = '1.0.3' +VERSION = '1.1'