Commit ·
7ccb44c
1
Parent(s): 062a131
Bump version
Browse files- .bumpversion.cfg +1 -1
- pyproject.toml +1 -1
- src/deep_package_detection/__init__.py +1 -1
- tests/test_deep_package_detection.py +1 -1
.bumpversion.cfg
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
[bumpversion]
|
| 2 |
-
current_version = 0.
|
| 3 |
commit = False
|
| 4 |
tag = False
|
| 5 |
|
|
|
|
| 1 |
[bumpversion]
|
| 2 |
+
current_version = 0.2.0
|
| 3 |
commit = False
|
| 4 |
tag = False
|
| 5 |
|
pyproject.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
[tool.poetry]
|
| 2 |
name = "deep_package_detection"
|
| 3 |
-
version = "0.
|
| 4 |
description = "This is a deep model for detecting different types of packages."
|
| 5 |
authors = ["Afshin Dini <Afshin Dini>"]
|
| 6 |
readme = "README.md"
|
|
|
|
| 1 |
[tool.poetry]
|
| 2 |
name = "deep_package_detection"
|
| 3 |
+
version = "0.2.0"
|
| 4 |
description = "This is a deep model for detecting different types of packages."
|
| 5 |
authors = ["Afshin Dini <Afshin Dini>"]
|
| 6 |
readme = "README.md"
|
src/deep_package_detection/__init__.py
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
""" his is a deep model for detecting different types of packages. """
|
| 2 |
|
| 3 |
-
__version__ = "0.
|
|
|
|
| 1 |
""" his is a deep model for detecting different types of packages. """
|
| 2 |
|
| 3 |
+
__version__ = "0.2.0"
|
tests/test_deep_package_detection.py
CHANGED
|
@@ -5,4 +5,4 @@ from deep_package_detection import __version__
|
|
| 5 |
|
| 6 |
def test_version() -> None:
|
| 7 |
"""Unit test for checking the version of the code"""
|
| 8 |
-
assert __version__ == "0.
|
|
|
|
| 5 |
|
| 6 |
def test_version() -> None:
|
| 7 |
"""Unit test for checking the version of the code"""
|
| 8 |
+
assert __version__ == "0.2.0"
|