Skip to content

Commit

Permalink
Release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jqr committed Mar 3, 2016
1 parent 714e23b commit d9ca2cb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,6 @@
### 0.2.1 [March 3, 2016]
* Python 3 support

### 0.2.0 [January 29, 2016]
* **BREAKING CHANGE**: Rename ClientApi to DocApi

Expand Down
2 changes: 1 addition & 1 deletion docraptor/api_client.py
Expand Up @@ -81,7 +81,7 @@ def __init__(self, host=None, header_name=None, header_value=None, cookie=None):
self.host = host
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'Python-Swagger/0.2.0'
self.user_agent = 'Python-Swagger/0.2.1'

@property
def user_agent(self):
Expand Down
2 changes: 1 addition & 1 deletion docraptor/configuration.py
Expand Up @@ -234,5 +234,5 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 0.0.1\n"\
"SDK Package Version: 0.2.0".\
"SDK Package Version: 0.2.1".\
format(env=sys.platform, pyversion=sys.version)
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages

NAME = "docraptor"
VERSION = "0.2.0"
VERSION = "0.2.1"



Expand Down
2 changes: 1 addition & 1 deletion swagger-config.json
@@ -1,4 +1,4 @@
{
"packageName": "docraptor",
"packageVersion": "0.2.0"
"packageVersion": "0.2.1"
}

0 comments on commit d9ca2cb

Please sign in to comment.