From 9fd85b418e9f76306076012e798bdd652041686f Mon Sep 17 00:00:00 2001 From: masklinn Date: Sat, 20 Aug 2022 20:42:15 +0200 Subject: [PATCH] Release 0.15.1 - removed version bound from `setup_requires`, allows building from source when only PyYaml 6.0 is available (and downloading 5.4 is not), #121, #125 - added type assertion to parser lookup, to make the error clearer on type error, #122, #123 - fixed `setup.py build_regexes` and `setup.py build` for non-in-place builds, #127 --- setup.py | 2 +- ua_parser/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ef4401c..f47e9da 100644 --- a/setup.py +++ b/setup.py @@ -200,7 +200,7 @@ class sdist(_sdist): setup( name="ua-parser", - version="0.15.0", + version="0.15.1", description="Python port of Browserscope's user agent parser", author="PBS", author_email="no-reply@pbs.org", diff --git a/ua_parser/__init__.py b/ua_parser/__init__.py index d499645..8bdf711 100644 --- a/ua_parser/__init__.py +++ b/ua_parser/__init__.py @@ -1 +1 @@ -VERSION = (0, 15, 0) +VERSION = (0, 15, 1)