From 24da8fe21e8964d84f997c2a571f92b08e0dafa2 Mon Sep 17 00:00:00 2001 From: Martin Martinez Rivera Date: Tue, 16 Apr 2019 14:49:58 -0700 Subject: [PATCH 1/2] Create version 1.0.4 --- CHANGELOG.md | 10 ++++++++++ pydgraph/meta.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faa65a6..1bfa5b6 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.0.4] - 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..d26697a 100644 --- a/pydgraph/meta.py +++ b/pydgraph/meta.py @@ -14,4 +14,4 @@ """Metadata about this package.""" -VERSION = '1.0.3' +VERSION = '1.0.4' From bda426ecf3eb43084ebab70aa14b845b18b950ee Mon Sep 17 00:00:00 2001 From: Martin Martinez Rivera Date: Tue, 16 Apr 2019 15:04:14 -0700 Subject: [PATCH 2/2] Change version to 1.1 since this is a breaking change. --- CHANGELOG.md | 2 +- pydgraph/meta.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bfa5b6..325d4cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -## [v1.0.4] - 2019-04-16 +## [v1.1] - 2019-04-16 ### Added - Support for ACL (Access Control List). diff --git a/pydgraph/meta.py b/pydgraph/meta.py index d26697a..2ad3e23 100644 --- a/pydgraph/meta.py +++ b/pydgraph/meta.py @@ -14,4 +14,4 @@ """Metadata about this package.""" -VERSION = '1.0.4' +VERSION = '1.1'