Skip to content

Commit

Permalink
Bump version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gocemitevski committed May 15, 2024
1 parent 3631bb1 commit 7a6f48b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "enabler_keitaro_inc"
version = "0.1.0"
version = "0.1.1"
description = "Enabler is a CLI application built for making life easier when working on microservice-based applications. Through this package we can create, edit and execute custom commands to configure microservices."
authors = ["Keitaro Inc. <info@keitaro.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="enabler",
version="0.1.0",
version="0.1.1",
packages=["enabler", "src.enabler_keitaro_inc.commands", "src.enabler_keitaro_inc.helpers"], # noqa
include_package_data=True,
install_requires=["click==7.1.1",
Expand Down
4 changes: 2 additions & 2 deletions tests/version_unittests.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def setUp(self):

@patch('src.enabler_keitaro_inc.enabler.subprocess.run')
def test_version_command(self, mock_subprocess_run):
mock_subprocess_run.return_value.stdout = 'Enabler 0.1.0'
mock_subprocess_run.return_value.stdout = 'Enabler 0.1.1'
version = self.cli.version_command()
expected_version = 'Enabler 0.1.0'
expected_version = 'Enabler 0.1.1'
self.assertEqual(version, expected_version)

0 comments on commit 7a6f48b

Please sign in to comment.