Skip to content

Commit b45df71

Browse files
author
Sam
committed
Bump version: 0.1.2-beta → 0.1.3-beta
1 parent 108277e commit b45df71

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.2-beta
2+
current_version = 0.1.3-beta
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
test_suite='tests',
4343
tests_require=test_requirements,
4444
url='https://github.com/ujeebu/ujeebu-python',
45-
version='0.1.2-beta',
45+
version='0.1.3-beta',
4646
zip_safe=False,
4747
)

tests/test_ujeebu_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ def test_account_user_agent(self, mock_get):
468468
self.client.account()
469469

470470
call_args = mock_get.call_args
471-
self.assertEqual(call_args.kwargs['headers']['user-agent'], 'Ujeebu-Python/0.1.2-beta')
471+
self.assertEqual(call_args.kwargs['headers']['user-agent'], 'Ujeebu-Python/0.1.3-beta')
472472

473473

474474
if __name__ == '__main__':

ujeebu_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Yacine Alhyane"""
44
__email__ = 'y.alhyane@gmail.com'
5-
__version__ = '0.1.2-beta'
5+
__version__ = '0.1.3-beta'
66

77

88
from .ujeebu_python import UjeebuClient

0 commit comments

Comments
 (0)