Skip to content

Commit

Permalink
Release python-ndb 0.0.1 (googleapis#109)
Browse files Browse the repository at this point in the history
* Release 0.0.1

* Bump version in init
  • Loading branch information
crwilcox authored and andrewsg committed Jun 18, 2019
1 parent 3e46aa9 commit 06193f6
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 4 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/google/cloud/ndb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
.. autodata:: __all__
"""

__version__ = "0.0.1.dev1"
__version__ = "0.0.1"
"""Current ``ndb`` version."""
__all__ = [
"AutoBatcher",
Expand Down

0 comments on commit 06193f6

Please sign in to comment.