Skip to content

Commit d08199c

Browse files
committed
Prepare version 0.3.3
1 parent 8fe35a2 commit d08199c

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

README.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,15 @@ If you want to hack on this library itself, this should get you started::
7171
I'm very happy about patches, pull-requests and API-discussions (as this is
7272
mostly a wrapper supposed to have a nice API)!
7373

74+
Changelog
75+
---------
76+
77+
**v0.3.3**
78+
79+
- add HTTPS support
80+
- add 'Stringify JSON keyword'
81+
- implicitly set correct 'Host' header
82+
7483
License
7584
-------
7685
`Beerware <http://en.wikipedia.org/wiki/Beerware>`_: If we meet some day, and

setup.py

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

1313
setup(
1414
name = 'robotframework-httplibrary',
15-
version = "0.3.2",
15+
version = "0.3.3",
1616
description = 'Robot Framework keywords for HTTP requests',
1717
long_description = long_description,
1818
author = 'Filip Noetzel',

src/HttpLibrary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class HTTP:
3131
Pointer, go to http://tools.ietf.org/html/draft-pbryan-zyp-json-pointer-00.
3232
"""
3333

34-
ROBOT_LIBRARY_VERSION = "0.3.2"
34+
ROBOT_LIBRARY_VERSION = "0.3.3"
3535

3636
class Context(object):
3737
def __init__(self, http, host=None, scheme='http'):

0 commit comments

Comments
 (0)