We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9abac25 commit 4514b12Copy full SHA for 4514b12
setup.cfg
@@ -1,5 +1,5 @@
1
[bumpversion]
2
-current_version = 0.1.3
+current_version = 0.1.4
3
commit = True
4
tag = True
5
parse = (?P<major>\d+)
setup.py
@@ -4,4 +4,4 @@
6
if __name__ == "__main__":
7
- setup(version="0.1.3")
+ setup(version="0.1.4")
src/combine_notebooks/__init__.py
@@ -1,7 +1,7 @@
"""combine_notebooks - COMBINE jupyter notebooks in python."""
from pathlib import Path
-__version__ = "0.1.3"
+__version__ = "0.1.4"
BASE_DIR: Path = Path(__file__).parent.parent.parent
RESULTS_DIR: Path = BASE_DIR / "results"
0 commit comments