OLD | NEW |
| (Empty) |
1 Changes with version 1.0.10 | |
2 | |
3 *) Added support for pypy 2.2 | |
4 | |
5 *) Relint with newer pylint | |
6 | |
7 *) Fix locale problem with the setup script on python3. | |
8 Submitted by https://github.com/svenstaro | |
9 | |
10 | |
11 Changes with version 1.0.9 | |
12 | |
13 *) Documentation and benchmark updates | |
14 | |
15 | |
16 Changes with version 1.0.8 | |
17 | |
18 *) Updated benchmarks | |
19 | |
20 *) Added command line option for keeping comments starting with an exclamation | |
21 mark (-b) | |
22 | |
23 *) Added command line option for disabling the C implemention (-p) | |
24 | |
25 *) Added support for python 3.4 | |
26 | |
27 *) Added support for keeping comments starting with an exclamation mark. This | |
28 feature can be enabled by passing keep_bang_comments=True to the jsmin | |
29 function. | |
30 | |
31 | |
32 Changes with version 1.0.7 | |
33 | |
34 *) Fix inconsistency between Python and C (Python implementation was buggy). | |
35 Spotted by: Dave Smith <dave thesmithfam.org> | |
36 | |
37 *) Added support for jython 2.7 | |
38 | |
39 | |
40 Changes with version 1.0.6 | |
41 | |
42 *) Added compat option to setup.py supporting the pip installer | |
43 | |
44 *) Added support for pypy (1.9, 2.0) | |
45 | |
46 *) Added support for jython (2.5) | |
47 | |
48 | |
49 Changes with version 1.0.5 | |
50 | |
51 *) Newline removal before ! operator was made more sensible. | |
52 | |
53 | |
54 Changes with version 1.0.4 | |
55 | |
56 *) Added support for Python 3.3 | |
57 | |
58 *) Collapsion protection was reduced to "+ +" and "- -" sequences (which | |
59 still includes longer sequences like "+ ++") | |
60 | |
61 | |
62 Changes with version 1.0.3 | |
63 | |
64 *) "+ ++" and "- --" sequences are no longer collapsed. They were before, | |
65 because the original jsmin collapsed them, too. | |
66 | |
67 *) Updated benchmarks, added slimit and removed jsmin v8 (because it produced | |
68 invalid results). | |
69 | |
70 *) Removed "classic" regex variant. | |
71 | |
72 | |
73 Changes with version 1.0.2 | |
74 | |
75 *) Although it should work, python 2.3 is no longer supported. | |
76 (No suitable test environment) | |
77 | |
78 *) "return /regex/" is now recognized as regex expression. It wasn't before, | |
79 because the original jsmin ignored that, too. | |
80 | |
81 | |
82 Changes with version 1.0.1 | |
83 | |
84 *) Add C extension reimplementing the regex from rjsmin.py | |
85 | |
86 | |
87 Changes with version 1.0.0 | |
88 | |
89 *) First stable release. | |
OLD | NEW |