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 3ce5702 commit 5ce3463Copy full SHA for 5ce3463
CHANGES
@@ -0,0 +1,24 @@
1
+tinycss2 changelog
2
+==================
3
+
4
+Version 0.2
5
+-----------
6
7
+Released on 2013-09-02.
8
9
+Add parsing for <An+B>,
10
+as in ``:nth-child()`` and related Selectors pseudo-classes.
11
12
13
+Version 0.1
14
15
16
+Released on 2013-08-31.
17
18
+First PyPI release. Contains:
19
20
+* Decoding from bytes (``@charset``, etc.)
21
+* Tokenization
22
+* Parsing for "generic" rules and declarations
23
+* Parsing for CSS Color Level 3
24
+* Tests for all of the above, except for decoding from bytes.
tinycss2/__init__.py
@@ -1,4 +1,4 @@
-VERSION = '0.1'
+VERSION = '0.2'
from .tokenizer import parse_component_value_list
0 commit comments