From 7a5cef503bce590e82956fe569a1fd2f12bd3699 Mon Sep 17 00:00:00 2001 From: dnomadb Date: Mon, 30 Sep 2019 13:35:20 -0700 Subject: [PATCH] bump version --- CHANGELOG.md | 5 +++++ setup.py | 2 +- tilesets/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e734b4b..6074a74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.0 (2019-09-30) +- Feature input abstraction using `cligj` +- Logging refactor: default output is no compact JSON +- Informational printing (non-api responses) directed to stderr + ## 0.2.1 (20190-09-16) - Reformatting using `black` - More robust tileset id checking diff --git a/setup.py b/setup.py index 6871134..609b4f2 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def read(fname): setup( name="tilesets-cli", - version="0.2.0", + version="0.3.0", description=u"CLI for interacting with and preparing data for the Tilesets API", long_description=long_description, classifiers=[], diff --git a/tilesets/__init__.py b/tilesets/__init__.py index 977883e..f20f554 100644 --- a/tilesets/__init__.py +++ b/tilesets/__init__.py @@ -1,3 +1,3 @@ """tilesets package""" -__version__ = "0.2.1" +__version__ = "0.3.0"