We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7e22ae commit e4b4e91Copy full SHA for e4b4e91
README.rst
@@ -154,6 +154,13 @@ Running Tests
154
Changelog
155
---------
156
157
+Version 2.1 (2020-02-08)
158
+~~~~~~~~~~~~~~~~~~~~~~~~
159
+
160
+- ``python-user-agents`` now require ``ua-parser>=0.9.0``. Thanks @jnozsc!
161
+- Properly detect Chrome Mobile browser families. Thanks @jnozsc!
162
163
164
Version 2.0 (2019-04-07)
165
~~~~~~~~~~~~~~~~~~~~~~~~
166
setup.py
@@ -3,7 +3,7 @@
3
4
setup(
5
name='user-agents',
6
- version='2.0',
+ version='2.1',
7
author='Selwin Ong',
8
author_email='selwin.ong@gmail.com',
9
packages=['user_agents'],
user_agents/__init__.py
@@ -1,3 +1,3 @@
1
-VERSION = (2, 0, 0)
+VERSION = (2, 1, 0)
2
from .parsers import parse
0 commit comments