-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCHANGES.txt
105 lines (70 loc) · 2.25 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Changes 0.4.4
------------------------------------
Document count() method.
Add recipes and syntax doc.
Fix bias bug using multiple ORs.
Changes 0.4.3
------------------------------------
Add render_set()
Add __str__()
Changes 0.4.1
------------------------------------
Add seed feature.
Add option for custom Random class.
Add alias for `\u`, `\U`.
Update Sphinx documentation.
Changes 0.4.0
------------------------------------
Merge fix from scompt to eliminate syntax warning.
We no longer support Python earlier than 3.6.
Changes 0.3.4
------------------------------------
Fixed use of literal forward slash in character class.
Changes 0.3.3
------------------------------------
Use io.open in setup.py for 2.6 and 2.7 compatibility.
Changes 0.3.2
------------------------------------
Thanks to @wojtekwanczyk for improving Windows compatibility.
Changes 0.3.1
------------------------------------
Fixed unicode error on some Windows OS installs (not all), that try to
open README.txt with cp1252 codec during setup. The inverted quotes
provoke an exception.
Changes 0.2.1
------------------------------------
Added variable substitutions with lists and callables.
Changes 0.2.1
------------------------------------
Merged progress counter from Andreas Motl.
Changes 0.2.0
------------------------------------
Fixed literal processing and better tests.
Changes 0.1.9
------------------------------------
- Fixed numerous non-2.7 bugs
- Works on 3.0 - 3.5 except 3.2
- Tests work on Python 2.6 now
- Now tested with travis.ci
Changes 0.1.7
------------------------------------
- Fixed bug not allowing ']' as literal
- Now allowing '-' as range separator in quantifier to be more like regex
- Added some more tests
- Improved README
Changes 0.1.6
------------------------------------
- Added unit tests
Changes 0.1.5
------------------------------------
- Fixed import bug in python 3
Changes from version 0.1.2 to 0.1.3
------------------------------------
- improved README
- changed 'permutation' to 'shuffle' in the documentation
- added more info to the dump() method for debugging
- added __version__ to module
- fixed bug in choosing randint method
Changes from version 0.1.1 to 0.1.2
------------------------------------
- fixed to work with Python 3 and 2.7