Skip to content

Commit

Permalink
Bump Version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BolZer committed Mar 30, 2022
1 parent 8a86877 commit 9e8dc3b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
CHANGELOG
=========
* 0.3.0 (2022-03-30)
* Add support for request params in update document

* 0.2.1 (2021-11-29)
* Fixed release

Expand Down
2 changes: 1 addition & 1 deletion easybill_rest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


class Client:
_version: str = "0.2.1"
_version: str = "0.3.0"
_base_url: str = "https://api.easybill.de"
_requests = requests

Expand Down
4 changes: 2 additions & 2 deletions easybill_rest/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
class TestClient(unittest.TestCase, EasybillRestTestCaseAbstract):

def test_client_version(self) -> None:
self.assertEqual('0.2.1', Client('')._version)
self.assertEqual('0.3.0', Client('')._version)

def test_client_base_url(self) -> None:
self.assertEqual('https://api.easybill.de', Client('')._base_url)
Expand Down Expand Up @@ -95,7 +95,7 @@ def test_client_call_using_right_format(self) -> None:

header = {
'Authorization': 'Bearer Test',
'User-Agent': 'py-ebrest 0.2.1',
'User-Agent': 'py-ebrest 0.3.0',
'Content-type': 'application/json'
}

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# easybill_rest (py-ebrest)
[![Generic badge](https://img.shields.io/badge/Version-0.2.1-important.svg)]()
[![Generic badge](https://img.shields.io/badge/Version-0.3.0-important.svg)]()
[![Generic badge](https://img.shields.io/badge/coverage-97%25-success.svg)]()
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/easybill_rest.svg)
[![Generic badge](https://img.shields.io/badge/License-MIT-blue.svg)]()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"License :: OSI Approved :: MIT License",
],
python_requires='>=3.7.0',
version="0.2.1",
version="0.3.0",
install_requires=[
"requests",
"nose<2",
Expand Down

0 comments on commit 9e8dc3b

Please sign in to comment.