Skip to content

Commit 5ba4e30

Browse files
committed
Updates for 1.0.0
1 parent a43569f commit 5ba4e30

File tree

4 files changed

+37
-30
lines changed

4 files changed

+37
-30
lines changed

HISTORY.rst

Lines changed: 34 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,65 @@
11
History
22
~~~~~~~
33

4-
0.1.0 (2018-06-19)
4+
1.0.0 (2018-12-31)
55
------------------
66

7-
* First release on PyPI.
7+
* Ensure stored response body is always retrieved as bytes when asked for by the test.
8+
* Updates to README.
9+
* Use reverse chronological ordering of HISTORY.
810

9-
0.2.0 (2018-08-04)
10-
------------------
11+
0.10.0 (2018-10-30)
12+
-------------------
1113

12-
* Load proxy settings from env variables
13-
* Support disabling of content encoding
14-
* Updates to README
14+
* Fix issue where ignoring OPTIONS requests would trigger AttributeError.
15+
* Allow proxy settings to be explicitly set to None.
1516

16-
0.3.0 (2018-08-07)
17+
0.9.0 (2018-10-28)
1718
------------------
1819

19-
* Fix remote proxy basic authentication
20-
* Updates to README
20+
* Ignore OPTIONS requests by default, and allow list of methods to be configurable via the ignore_http_methods option.
21+
* Move default Selenium Wire request storage from system temp to user home to prevent permission collisions.
2122

22-
0.4.0 (2018-08-19)
23+
0.8.0 (2018-09-20)
2324
------------------
2425

25-
* OpenSSL for Windows now bundled
26-
* Setup instructions for Edge
26+
* Fix issue where new headers were not being added to the request when using driver.header_overrides.
2727

28-
0.5.0 (2018-08-19)
28+
0.7.0 (2018-08-29)
2929
------------------
3030

31-
* Clearer README instructions
31+
* README and doc updates.
3232

3333
0.6.0 (2018-08-21)
3434
------------------
3535

36-
* Bundle openssl.cnf for Windows
36+
* Bundle openssl.cnf for Windows.
3737

38-
0.7.0 (2018-08-29)
38+
0.5.0 (2018-08-19)
3939
------------------
4040

41-
* README and doc updates
41+
* Clearer README instructions.
4242

43-
0.8.0 (2018-09-20)
43+
0.4.0 (2018-08-19)
4444
------------------
4545

46-
* Fix issue where new headers were not being added to the request when using driver.header_overrides
46+
* OpenSSL for Windows now bundled.
47+
* Setup instructions for Edge.
4748

48-
0.9.0 (2018-10-28)
49+
0.3.0 (2018-08-07)
4950
------------------
5051

51-
* Ignore OPTIONS requests by default, and allow list of methods to be configurable via the ignore_http_methods option.
52-
* Move default Selenium Wire request storage from system temp to user home to prevent permission collisions.
52+
* Fix remote proxy basic authentication.
53+
* Updates to README.
5354

54-
0.10.0 (2018-10-30)
55-
-------------------
55+
0.2.0 (2018-08-04)
56+
------------------
5657

57-
* Fix issue where ignoring OPTIONS requests would trigger AttributeError
58-
* Allow proxy settings to be explicitly set to None
58+
* Load proxy settings from env variables.
59+
* Support disabling of content encoding.
60+
* Updates to README.
61+
62+
0.1.0 (2018-06-19)
63+
------------------
64+
65+
* First release on PyPI.

seleniumwire/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"""Top-level package for Selenium Wire."""
44

55
__author__ = """Will Keeling"""
6-
__version__ = '0.10.0'
6+
__version__ = '1.0.0'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.10.0
2+
current_version = 1.0.0
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@
3636
test_suite='nose.collector',
3737
tests_require=['nose'],
3838
url='https://github.com/wkeeling/selenium-wire',
39-
version='0.10.0',
39+
version='1.0.0',
4040
zip_safe=False,
4141
)

0 commit comments

Comments
 (0)