From 06193f66bed4abc0bcb4173916a592a1871ccf5e Mon Sep 17 00:00:00 2001 From: Christopher Wilcox Date: Tue, 18 Jun 2019 15:20:12 -0700 Subject: [PATCH] Release python-ndb 0.0.1 (#109) * Release 0.0.1 * Bump version in init --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++ README.md | 3 +-- setup.py | 2 +- src/google/cloud/ndb/__init__.py | 2 +- 4 files changed, 37 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..f6c0057a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,34 @@ +# Changelog + +[PyPI History][1] + +[1]: https://pypi.org/project/google-cloud-ndb/#history + +## 0.0.1 + +06-11-2019 16:30 PDT + +### Implementation Changes +- Query repeated structured properties. ([#103](https://github.com/googleapis/python-ndb/pull/103)) +- Fix Structured Properties ([#102](https://github.com/googleapis/python-ndb/pull/102)) + +### New Features +- Implement expando model ([#99](https://github.com/googleapis/python-ndb/pull/99)) +- Model properties ([#96](https://github.com/googleapis/python-ndb/pull/96)) +- Implemented tasklets.synctasklet ([#58](https://github.com/googleapis/python-ndb/pull/58)) +- Implement LocalStructuredProperty ([#93](https://github.com/googleapis/python-ndb/pull/93)) +- Implement hooks. ([#95](https://github.com/googleapis/python-ndb/pull/95)) +- Three easy Model methods. ([#94](https://github.com/googleapis/python-ndb/pull/94)) +- Model.get or insert ([#92](https://github.com/googleapis/python-ndb/pull/92)) +- Implement ``Model.get_by_id`` and ``Model.get_by_id_async``. +- Implement ``Model.allocate_ids`` and ``Model.allocate_ids_async``. +- Implement ``Query.fetch_page`` and ``Query.fetch_page_async``. +- Implement ``Query.count`` and ``Query.count_async`` +- Implement ``Query.get`` and ``Query.get_async``. + +### Documentation +- update sphinx version and eliminate all warnings ([#105](https://github.com/googleapis/python-ndb/pull/105)) + +## 0.0.1dev1 + +Initial development release of NDB client library. diff --git a/README.md b/README.md index abffaf9c..d5f60881 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,7 @@ run on other Python 3 platforms as well. ## Release Status -This version of the client is not yet officially released (it is in a -pre-Alpha state) and is still under active development. +Alpha ### Supported Python Versions Python >= 3.6 diff --git a/setup.py b/setup.py index 286397a5..239c8b7d 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def main(): setuptools.setup( name="google-cloud-ndb", - version="0.0.1.dev1", + version="0.0.1", description="NDB library for Google Cloud Datastore", long_description=readme, long_description_content_type="text/markdown", diff --git a/src/google/cloud/ndb/__init__.py b/src/google/cloud/ndb/__init__.py index 13605184..b69813b7 100644 --- a/src/google/cloud/ndb/__init__.py +++ b/src/google/cloud/ndb/__init__.py @@ -21,7 +21,7 @@ .. autodata:: __all__ """ -__version__ = "0.0.1.dev1" +__version__ = "0.0.1" """Current ``ndb`` version.""" __all__ = [ "AutoBatcher",