From af6f14a702dc5b42fe72acbbf5437cd998204f61 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Wed, 16 Aug 2017 22:13:54 +0200 Subject: [PATCH] Version 0.2.0. --- CHANGES | 15 ++++++++++++++- cssselect2/__init__.py | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 99a73cc..307f1f7 100644 --- a/CHANGES +++ b/CHANGES @@ -2,7 +2,20 @@ cssselect2 changelog ==================== +Version 0.2.0 +------------- + +Released on 2017-08-16. + +* Fix some selectors for HTML documents with no namespace. +* Don't crash when the attribute comparator is unknown. +* Don't crash when there are empty attribute classes. +* Follow semantic versioning. + + Version 0.1 ----------- -Not released yet. +Released on 2017-07-07. + +* Initial release. diff --git a/cssselect2/__init__.py b/cssselect2/__init__.py index e354800..996d67b 100644 --- a/cssselect2/__init__.py +++ b/cssselect2/__init__.py @@ -22,7 +22,7 @@ from .compiler import compile_selector_list, CompiledSelector # noqa -VERSION = '0.1' +VERSION = '0.2.0' class Matcher(object):