diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4892150..d9e668c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = True diff --git a/README.md b/README.md index 27cd8cd..aa355ac 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,11 @@ Unreleased * ... +0.1.1 - 2020-02-12 +----- + +* ... + 0.1.0 - 2020-02-12 ----- diff --git a/listful/__init__.py b/listful/__init__.py index 5c1b70c..6395ce4 100644 --- a/listful/__init__.py +++ b/listful/__init__.py @@ -1,4 +1,4 @@ from .exceptions import MoreThanOneResultException, NotFoundException # noqa from .listful import Listful # noqa -__version__ = '0.1.0' +__version__ = '0.1.1' diff --git a/pyproject.toml b/pyproject.toml index c37c37a..eda76f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "listful" -version = "0.1.0" +version = "0.1.1" description = "efficient filtering of lists of objects" authors = ["David S "] license = "MIT"