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 dccf401 commit 2f47372Copy full SHA for 2f47372
setup.cfg
@@ -1,5 +1,5 @@
1
[bumpversion]
2
-current_version = 0.2.1
+current_version = 0.2.2
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.2.1", include_package_data=True)
+ setup(version="0.2.2", include_package_data=True)
src/combine_notebooks/__init__.py
@@ -1,7 +1,7 @@
"""combine_notebooks - COMBINE jupyter notebooks in python."""
from pathlib import Path
-__version__ = "0.1.4"
+__version__ = "0.2.2"
BASE_DIR: Path = Path(__file__).parent.parent.parent
RESULTS_DIR: Path = BASE_DIR / "notebooks/results"
0 commit comments