diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-05-18 20:31:09 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-05-18 20:31:09 +0100 |
commit | be3e7216ad7386da503128b309481e9ad803b0ba (patch) | |
tree | 5e441ea38f5cf5ca3251cac920ae1765ae44a2b8 | |
parent | 0f21c97f06bccd2260931e7543a24dc618f355b4 (diff) |
v1.1.6
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | datamaps/__init__.py | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f13ed2..ad1a09a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.1.6 + +* Added the `Month()` object to `datamaps.api`. You can now assign a month + to a `Master()` object using the function + `datamaps.api.project_data_from_master_month`. + ## v1.1.5 * Additional version bump to bring into line with `bcompiler-engine`. diff --git a/datamaps/__init__.py b/datamaps/__init__.py index 9b102be..1436d8f 100644 --- a/datamaps/__init__.py +++ b/datamaps/__init__.py @@ -1 +1 @@ -__version__ = "1.1.5" +__version__ = "1.1.6" diff --git a/pyproject.toml b/pyproject.toml index 4241d53..87d347a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"] [tool.poetry] name = "datamaps" -version = "1.1.4" +version = "1.1.6" homepage = "https://github.com/hammerheadlemon/datamaps" repository = "https://github.com/hammerheadlemon/datamaps" license = "MIT" |