diff --git a/greps/__init__.py b/greps/__init__.py index 6cd12c9..25f5116 100644 --- a/greps/__init__.py +++ b/greps/__init__.py @@ -1,5 +1,5 @@ from .greps import Grep, load_ipython_extension -__version__ = "1.0.3" +__version__ = "1.0.4" __all__ = ["Grep", "load_ipython_extension", "__version__"] diff --git a/pyproject.toml b/pyproject.toml index 790debd..908df88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "greps" -version = "1.0.3" +version = "1.0.4" description = "Simple ipython magic that do grep over ipython outputs" authors = ["Roy Reznik "] readme = "README.md" @@ -32,7 +32,7 @@ strict = true [tool.bumpversion] -current_version = "1.0.3" +current_version = "1.0.4" commit = true tag = true tag_name = "v{new_version}" @@ -53,6 +53,7 @@ search = "^version = \"{current_version}\"" replace = "version = \"{new_version}\"" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"