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 b265ff5 commit c412981Copy full SHA for c412981
setup.cfg
@@ -1,5 +1,5 @@
1
[bumpversion]
2
-current_version = 0.1.0
+current_version = 0.1.1
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.0")
+ setup(version="0.1.1")
src/combine_notebooks/__init__.py
@@ -1,7 +1,7 @@
"""combine_notebooks - COMBINE jupyter notebooks in python."""
from pathlib import Path
-__version__ = "0.1.0"
+__version__ = "0.1.1"
BASE_DIR: Path = Path(__file__).parent.parent.parent
RESULTS_DIR: Path = BASE_DIR / "results"
0 commit comments