Skip to content

Commit 5ce3463

Browse files
committed
Add changelog.
1 parent 3ce5702 commit 5ce3463

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGES

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = '0.1'
1+
VERSION = '0.2'
22

33

44
from .tokenizer import parse_component_value_list

0 commit comments

Comments
 (0)