Skip to content

Commit 66bc947

Browse files
authored
chore(release): Release v0.2.0 (#232)
* Release v0.2.0
1 parent ae94c3d commit 66bc947

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

packages/google-cloud-ndb/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,38 @@
44

55
[1]: https://pypi.org/project/google-cloud-ndb/#history
66

7+
## 0.2.0
8+
9+
11-06-2019 10:39 PST
10+
11+
12+
### Implementation Changes
13+
- `query.map()` and `query.map_async()` hanging with empty result set. ([#230](https://github.com/googleapis/python-ndb/pull/230))
14+
- remove dunder version ([#202](https://github.com/googleapis/python-ndb/pull/202))
15+
- Check context ([#211](https://github.com/googleapis/python-ndb/pull/211))
16+
- Fix `Model._gql`. ([#223](https://github.com/googleapis/python-ndb/pull/223))
17+
- Update intersphinx mapping ([#206](https://github.com/googleapis/python-ndb/pull/206))
18+
- do not set meanings for compressed property when it has no value ([#200](https://github.com/googleapis/python-ndb/pull/200))
19+
20+
### New Features
21+
- Python 2.7 compatibility ([#203](https://github.com/googleapis/python-ndb/pull/203))
22+
- Add `tzinfo` to DateTimeProperty. ([#226](https://github.com/googleapis/python-ndb/pull/226))
23+
- Implement `_prepare_for_put` for `StructuredProperty` and `LocalStructuredProperty`. ([#221](https://github.com/googleapis/python-ndb/pull/221))
24+
- Implement ``Query.map`` and ``Query.map_async``. ([#218](https://github.com/googleapis/python-ndb/pull/218))
25+
- Allow class member values in projection and distinct queries ([#214](https://github.com/googleapis/python-ndb/pull/214))
26+
- Implement ``Future.cancel()`` ([#204](https://github.com/googleapis/python-ndb/pull/204))
27+
28+
### Documentation
29+
- Update README to include Python 2 support. ([#231](https://github.com/googleapis/python-ndb/pull/231))
30+
- Fix typo in MIGRATION_NOTES.md ([#208](https://github.com/googleapis/python-ndb/pull/208))
31+
- Spelling fixes. ([#209](https://github.com/googleapis/python-ndb/pull/209))
32+
- Add spell checking dependencies for documentation build. ([#196](https://github.com/googleapis/python-ndb/pull/196))
33+
34+
### Internal / Testing Changes
35+
- Enable release-please ([#228](https://github.com/googleapis/python-ndb/pull/228))
36+
- Introduce local redis for tests ([#191](https://github.com/googleapis/python-ndb/pull/191))
37+
- Use .kokoro configs from templates. ([#194](https://github.com/googleapis/python-ndb/pull/194))
38+
739
## 0.1.0
840

941
09-10-2019 13:43 PDT

packages/google-cloud-ndb/setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def main():
3030

3131
setuptools.setup(
3232
name="google-cloud-ndb",
33-
version = "0.1.0",
33+
version = "0.2.0",
3434
description="NDB library for Google Cloud Datastore",
3535
long_description=readme,
3636
long_description_content_type="text/markdown",
@@ -50,6 +50,8 @@ def main():
5050
"Programming Language :: Python :: 3",
5151
"Programming Language :: Python :: 3.6",
5252
"Programming Language :: Python :: 3.7",
53+
"Programming Language :: Python :: 2",
54+
"Programming Language :: Python :: 2.7",
5355
"Operating System :: OS Independent",
5456
"Topic :: Internet",
5557
],

0 commit comments

Comments
 (0)