afshin-dini commited on
Commit
608239c
·
1 Parent(s): f967ea6

bump version

Browse files
.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
  [bumpversion]
2
- current_version = 0.1.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 = "panaroma_stitcher"
3
- version = "0.1.0"
4
  description = "This rep can stitch multi panaroma images"
5
  authors = ["Afshin Dini <Afshin Dini>"]
6
  readme = "README.md"
 
1
  [tool.poetry]
2
  name = "panaroma_stitcher"
3
+ version = "0.2.0"
4
  description = "This rep can stitch multi panaroma images"
5
  authors = ["Afshin Dini <Afshin Dini>"]
6
  readme = "README.md"
src/panaroma_stitcher/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
  """ This rep can stitch multi panaroma images """
2
 
3
- __version__ = "0.1.0"
4
 
5
  from .utility import ImageLoader
6
  from .detailed_stitcher import DetailedStitcher
 
1
  """ This rep can stitch multi panaroma images """
2
 
3
+ __version__ = "0.2.0"
4
 
5
  from .utility import ImageLoader
6
  from .detailed_stitcher import DetailedStitcher
tests/test_panaroma_stitcher.py CHANGED
@@ -5,4 +5,4 @@ from panaroma_stitcher import __version__
5
 
6
  def test_version() -> None:
7
  """Unit test for checking the version of the code"""
8
- assert __version__ == "0.1.0"
 
5
 
6
  def test_version() -> None:
7
  """Unit test for checking the version of the code"""
8
+ assert __version__ == "0.2.0"