aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2021-05-02 20:43:40 +0100
committerMatthew Lemon <matt@matthewlemon.com>2021-05-02 20:43:40 +0100
commita4c90248678c98a73526d313d7e9709a69b56757 (patch)
tree0283e999fd6c77614d7bcf3fa8fe121bd4e57415
parent7cc683f9a7309eeb04e7995832a9d84c9cfd0422 (diff)
prep for version bump
-rw-r--r--CHANGELOG.md5
-rw-r--r--datamaps/__init__.py2
-rw-r--r--pyproject.toml4
-rw-r--r--setup.py2
4 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9345c8d..26d276e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## v1.1.3
+
+* Fixed zip bug in `bcompiler-engine`, which is bumped to `v1.1.4`
+(https://github.com/yulqen/datamaps/issues/18).
+
## v1.1.2
* Introduced the `-z/--zipinput` flag to `datamaps import templates` command,
diff --git a/datamaps/__init__.py b/datamaps/__init__.py
index 72f26f5..0b2f79d 100644
--- a/datamaps/__init__.py
+++ b/datamaps/__init__.py
@@ -1 +1 @@
-__version__ = "1.1.2"
+__version__ = "1.1.3"
diff --git a/pyproject.toml b/pyproject.toml
index b1b309a..f6787b7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
[tool.poetry]
name = "datamaps"
-version = "1.1.1"
+version = "1.1.3"
homepage = "https://github.com/hammerheadlemon/datamaps"
repository = "https://github.com/hammerheadlemon/datamaps"
license = "MIT"
@@ -15,7 +15,7 @@ authors = ["Matthew Lemon <matt@matthewlemon.com>"]
python = "^3.7.0"
python-dateutil = "^2.8.1"
click = "^7.1.2"
-bcompiler-engine = "^1.1.0"
+bcompiler-engine = "^1.1.4"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
diff --git a/setup.py b/setup.py
index ec7e43a..70a8201 100644
--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,7 @@ setup(
install_requires=[
'click',
'python-dateutil',
- 'bcompiler-engine>=1.1.3'
+ 'bcompiler-engine>=1.1.4'
# "bcompiler-engine @ git+https://github.com/hammerheadlemon/bcompiler-engine@datamaps-cli-opt"
],
test_suite='datamaps.tests')