aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2021-01-16 16:32:56 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2021-01-16 16:32:56 +0000
commit3a765e1d6973a203a0fb3bcf7b448ae49e04b4e7 (patch)
treee48aa211f00a59909b0418f85cb966df8f089736
parent4bac2917207faeca2957c4d52a55e79c297ef85a (diff)
version bump to 1.1.0
-rw-r--r--datamaps/__init__.py2
-rw-r--r--pyproject.toml4
-rw-r--r--setup.py3
3 files changed, 4 insertions, 5 deletions
diff --git a/datamaps/__init__.py b/datamaps/__init__.py
index 39e0411..6849410 100644
--- a/datamaps/__init__.py
+++ b/datamaps/__init__.py
@@ -1 +1 @@
-__version__ = "1.0.9"
+__version__ = "1.1.0"
diff --git a/pyproject.toml b/pyproject.toml
index a258daf..6608afc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
[tool.poetry]
name = "datamaps"
-version = "1.0.6"
+version = "1.1.0"
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.0.7"
+bcompiler-engine = "^1.1.0"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
diff --git a/setup.py b/setup.py
index 0b340e3..63255d5 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,6 @@ setup(
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Other Audience",
- "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Text Processing",
@@ -36,7 +35,7 @@ setup(
install_requires=[
'click',
'python-dateutil',
- 'bcompiler-engine>=1.0.9'
+ 'bcompiler-engine>=1.1.0'
# "bcompiler-engine @ git+https://github.com/hammerheadlemon/bcompiler-engine@datamaps-cli-opt"
],
test_suite='datamaps.tests')