Skip to content

Commit

Permalink
version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thilux committed May 16, 2020
1 parent 6124019 commit e0cee8c
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"restructuredtext.confPath": ""
}
12 changes: 12 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
requests = "==2.20.0"

[requires]
python_version = "3.7"
57 changes: 57 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ Status and updates
==================

* May 2016: Development started and API V2 Client is up for business!
* May 2020: Fix to client shared lib (version 0.1.2)


Contact
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ def run_tests(self):
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
),
Expand Down
6 changes: 3 additions & 3 deletions tvdb_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from .clients import ApiV1Client, ApiV2Client

__title__ = 'tvdb_client'
__version__ = '0.1.1'
__build__ = 0x001010
__version__ = '0.1.2'
__build__ = 0x001020
__author__ = 'Thiago Santana'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2016 Thiago Santana (thilux/thilux Systems)'
__copyright__ = 'Copyright 2020 Thiago Santana (thilux/thilux Systems)'

0 comments on commit e0cee8c

Please sign in to comment.