Skip to content

Commit

Permalink
Adding bump-my-version
Browse files Browse the repository at this point in the history
  • Loading branch information
royreznik committed Dec 30, 2023
1 parent 2d4cb7a commit ec13b9e
Show file tree
Hide file tree
Showing 4 changed files with 353 additions and 6 deletions.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
BUMP_PART ?=

setup:
python3 -m pip install poetry

Expand All @@ -18,4 +20,7 @@ format:

lint:
poetry run ruff greps/ tests/
poetry run mypy greps/ tests/
poetry run mypy greps/ tests/

bump:
poetry run bump-my-version bump $(BUMP_PART)
4 changes: 3 additions & 1 deletion greps/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from .greps import Grep, load_ipython_extension

__all__ = ["Grep", "load_ipython_extension"]
__version__ = "1.0.2"

__all__ = ["Grep", "load_ipython_extension", "__version__"]
Loading

0 comments on commit ec13b9e

Please sign in to comment.