diff --git a/pyproject.toml b/pyproject.toml index 97be1b2..48dce1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "minifold" -version = '0.9.3' +version = '0.10.0' description = "Minifold is a Python module able to interact with various data sources (e.g. CSV, LDAP, SQL, twitter, etc.) and to query/combine/aggregate them with database-like operators." authors = ["Marc-Olivier Buob "] license = "BSD-3 license" diff --git a/setup.cfg b/setup.cfg index f0e43a7..b48306a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.3 +current_version = 0.10.0 commit = True tag = True diff --git a/src/minifold/__init__.py b/src/minifold/__init__.py index 19dfed7..26b8688 100644 --- a/src/minifold/__init__.py +++ b/src/minifold/__init__.py @@ -11,7 +11,7 @@ __email__ = "marc-olivier.buob@nokia-bell-labs.com" __copyright__ = "Copyright (C) 2018, Nokia" __license__ = "BSD-3" -__version__ = '0.9.3' # Use single quotes for bumpversion (see setup.cfg) +__version__ = '0.10.0' # Use single quotes for bumpversion (see setup.cfg) from .binary_predicate import OPERATORS, OPERATORS_TO_STR, BinaryPredicate from .cached import CachedEntriesConnector, JsonCachedConnector, PickleCachedConnector