diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a0d40a..e972734 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.1.2 + - carbon-sync: expose --overwrite to copy all non-null datapoints (PR#89, @jehiah) + - fill: fix bugs causing some data points not to be copied (PR#90, @jehiah) + ## v1.1.1 - passing empty list for nodes seems to work (PR#87, @olevchyk) diff --git a/carbonate/__init__.py b/carbonate/__init__.py index b4aa77c..33f479a 100644 --- a/carbonate/__init__.py +++ b/carbonate/__init__.py @@ -2,7 +2,7 @@ Tools for managing a federated Carbon cluster. """ -__version_info__ = ('1', '1', '1') +__version_info__ = ('1', '1', '2') __version__ = '.'.join(__version_info__)