Browse Source

bump v0.9.1

0.9 v0.9.1
Rossen Georgiev 6 years ago
parent
commit
94c5e5ab6f
  1. 10
      CHANGES.md
  2. 5
      requirements.txt
  3. 2
      steam/__init__.py

10
CHANGES.md

@ -0,0 +1,10 @@
# Change notes
## 0.9.1
- Update builtin CM server list
- Fix `create_emergency_codes()` not working
- Add code param to `create_emergency_codes()` for SMS codes
- Fix `validate_phone_number()` not returning a result
- Fix `get_product_info()` not handling invalid UTF8 encodings

5
requirements.txt

@ -1,6 +1,6 @@
six>=1.10.0
cryptography>=1.3
requests>=2.9.1
requests>=2.9.1,<2.22.0
vdf>=2.0
gevent>=1.2.0
protobuf>=3.0.0
@ -10,7 +10,6 @@ coverage==4.0.3
pytest==3.2.1
pytest-cov==2.5.1
mock==1.3.0
nose==1.3.7
PyYAML==3.11
PyYAML==5.1
vcrpy==1.7.4
sphinx==1.3.5

2
steam/__init__.py

@ -1,4 +1,4 @@
__version__ = "0.9.0"
__version__ = "0.9.1"
__author__ = "Rossen Georgiev"
version_info = tuple(map(int, __version__.split('.')))

Loading…
Cancel
Save