Skip to content

Commit

Permalink
Release Version 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BolZer committed Nov 29, 2021
1 parent 8e53138 commit 5f50886
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.2.1 (2021-11-29)
* Fixed release

* 0.2.0 (2021-11-29)
* An issue with the contact resource url was fixed

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.0"
_version: str = "0.2.1"
_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.0', Client('')._version)
self.assertEqual('0.2.1', Client('')._version)

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

header = {
'Authorization': 'Bearer Test',
'User-Agent': 'py-ebrest 0.2.0',
'User-Agent': 'py-ebrest 0.2.1',
'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.0-important.svg)]()
[![Generic badge](https://img.shields.io/badge/Version-0.2.1-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.0",
version="0.2.1",
install_requires=[
"requests",
"nose<2",
Expand Down

0 comments on commit 5f50886

Please sign in to comment.