From 742f243d70414aa1bd9c4d00ddee291cfa865b15 Mon Sep 17 00:00:00 2001 From: Martin Martinez Rivera Date: Tue, 16 Apr 2019 15:06:17 -0700 Subject: [PATCH] Create version 1.1 (#62) --- CHANGELOG.md | 10 ++++++++++ pydgraph/meta.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) 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'