Skip to content

Commit b51f73d

Browse files
authored
Release python api 1.4.1 (#152)
1 parent 3687a38 commit b51f73d

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 1.4.1
4+
5+
**Date** - 08/25/2020
6+
7+
**Release Tag** - [py1.4.1](https://github.com/datacommonsorg/api-python/releases/tag/py1.4.1)
8+
9+
**Release Status** - Current head of branch [`master`](https://github.com/datacommonsorg/api-python/tree/master)
10+
11+
New features added to the Python API
12+
13+
- `get_stat_value`: returns a single value for the specified Place and StatisticalVariable.
14+
- `get_stat_series`: returns a single time series dict for the specified Place and StatisticalVariable.
15+
- `get_stat_all`: returns a nested dictionary of all possible time series for each Place and StatisticalVariable pair.
16+
317
## 1.3.0
418

519
**Date** - 07/28/2020

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Data Commons Python API
22

33
This is a Python library for accessing data in the Data Commons Graph.
4+
5+
> See also: [Data Commons Pandas API](datacommons_pandas/README.md).
6+
7+
48
To get started, install this package from pip.
59

610
pip install datacommons
@@ -64,8 +68,8 @@ where XXX is the module you want to run.
6468

6569
## Release to PyPI
6670

67-
- Update "VERSION" in setup.py
68-
- Update CHANGELOG.md for a new version
71+
- Update "VERSION" in [setup_datacommons.py](setup_datacommons.py)
72+
- Update [CHANGELOG.md](CHANGELOG.md) for a new version
6973
- Upload a new package using steps for [generating distribution archives](https://packaging.python.org/tutorials/packaging-projects/#generating-distribution-archives) and [uploading the distribution archives](https://packaging.python.org/tutorials/packaging-projects/#uploading-the-distribution-archives)
7074

7175
## Support

datacommons_pandas/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ Apache 2.0
3131

3232
## Development
3333

34-
Please follow the Development instructions from the root directory.
34+
Please follow the [Development instructions](../README.md#development).
3535

3636
## Release to PyPI
3737

38-
- Update "VERSION" in setup.py
39-
- Update CHANGELOG.md for a new version
38+
- Update "VERSION" in [setup_datacommons_pandas.py](../setup_datacommons_pandas.py)
39+
- Update [CHANGELOG.md](CHANGELOG.md) for a new version
4040
- Upload a new package using steps for [generating distribution archives](https://packaging.python.org/tutorials/packaging-projects/#generating-distribution-archives) and [uploading the distribution archives](https://packaging.python.org/tutorials/packaging-projects/#uploading-the-distribution-archives)
4141

4242
## Support

setup_datacommons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
2525
AUTHOR = 'datacommons.org'
2626
REQUIRES_PYTHON = '>=2.7'
27-
VERSION = '1.3.0'
27+
VERSION = '1.4.1'
2828

2929
REQUIRED = [
3030
'six',

0 commit comments

Comments
 (0)