|
| 1 | +## 5.0.0 |
| 2 | + |
| 3 | +- Add support for Py 3.9 - added tox (@jon-betts - Thx) |
| 4 | +- Drop support for python 2.7, 3.5 & friends |
| 5 | + |
1 | 6 | ## 4.0.1
|
2 |
| - - Add support for Py 3.8 |
| 7 | + |
| 8 | +- Add support for Py 3.8 |
| 9 | +- Last version with `official` python 2.7 and <= 3.5 support |
3 | 10 |
|
4 | 11 | ## 4.0.0
|
5 |
| - - Drop support from 2.6, & < 3.4.5 |
| 12 | + |
| 13 | +- Drop support from 2.6, & < 3.4.5 |
6 | 14 |
|
7 | 15 | ## 3.0.6
|
8 |
| - - Fixed encoding in special.py |
| 16 | + |
| 17 | +- Fixed encoding in special.py |
9 | 18 |
|
10 | 19 | ## 3.0.5
|
11 |
| - - Add test for pre-translation (e.g German Umlaut) |
12 |
| - - Add special char supports (optional Use) |
| 20 | + |
| 21 | +- Add test for pre-translation (e.g German Umlaut) |
| 22 | +- Add special char supports (optional Use) |
13 | 23 |
|
14 | 24 | ## 3.0.4
|
15 |
| - - Now supporting text-unidecode>=1.3 |
16 |
| - - Now supporting Unidecode>=1.1.1 |
| 25 | + |
| 26 | +- Now supporting text-unidecode>=1.3 |
| 27 | +- Now supporting Unidecode>=1.1.1 |
17 | 28 |
|
18 | 29 | ## 3.0.3
|
19 |
| - - Remove unicode chars from file |
| 30 | + |
| 31 | +- Remove unicode chars from file |
20 | 32 |
|
21 | 33 | ## 3.0.2
|
22 |
| - - Add official support of Py 3.7 |
| 34 | + |
| 35 | +- Add official support of Py 3.7 |
23 | 36 |
|
24 | 37 | ## 3.0.1
|
25 |
| - - Add test.py to manifest |
| 38 | + |
| 39 | +- Add test.py to manifest |
26 | 40 |
|
27 | 41 | ## 3.0.0
|
28 |
| - - Upgrade Unidecode |
29 |
| - - Promote text-unidecode as the primary decoding package |
30 |
| - - Add Unidecode as an optional extra. "pip install python-slugify[unidecode]" |
| 42 | + |
| 43 | +- Upgrade Unidecode |
| 44 | +- Promote text-unidecode as the primary decoding package |
| 45 | +- Add Unidecode as an optional extra. "pip install python-slugify[unidecode]" |
31 | 46 |
|
32 | 47 | ## 2.0.1
|
33 |
| - - Add replacements option e.g. [['|', 'or'], ['%', 'percent'], ['-', '_']] (@andriyor) |
| 48 | + |
| 49 | +- Add replacements option e.g. [['|', 'or'], ['%', 'percent'], ['-', '_']] (@andriyor) |
34 | 50 |
|
35 | 51 | ## 2.0.0
|
36 |
| - - Fix alternative dependency installation |
| 52 | + |
| 53 | +- Fix alternative dependency installation |
37 | 54 |
|
38 | 55 | ## 1.2.6
|
39 |
| - - Add support for case sensitive slugs (@s-m-e) |
| 56 | + |
| 57 | +- Add support for case sensitive slugs (@s-m-e) |
40 | 58 |
|
41 | 59 | ## 1.2.5
|
42 |
| - - Add support for using text-unidecode (@bolkedebruin) |
43 |
| - - Switch to pycodestyle instead of pep8 |
| 60 | + |
| 61 | +- Add support for using text-unidecode (@bolkedebruin) |
| 62 | +- Switch to pycodestyle instead of pep8 |
44 | 63 |
|
45 | 64 | ## 1.2.4
|
46 |
| - - Remove build artifacts during packaging |
47 |
| - - Simplify the setup.py file (@reece) |
| 65 | + |
| 66 | +- Remove build artifacts during packaging |
| 67 | +- Simplify the setup.py file (@reece) |
48 | 68 |
|
49 | 69 | ## 1.2.3
|
50 |
| - - Republish - possible corrupt 1.2.2 build |
| 70 | + |
| 71 | +- Republish - possible corrupt 1.2.2 build |
51 | 72 |
|
52 | 73 | ## 1.2.2
|
53 |
| - - Add `regex_pattern` option. (@vrbaskiz) |
54 |
| - - Add Python 3.6 support |
| 74 | + |
| 75 | +- Add `regex_pattern` option. (@vrbaskiz) |
| 76 | +- Add Python 3.6 support |
55 | 77 |
|
56 | 78 | ## 1.2.1
|
57 |
| - - Including certain files (e.g. license.md) in sdists via MANIFEST.in (@proinsias) |
58 |
| - - Relax licensing by moving from BSD to MIT |
59 |
| - - Add Python 3.5 support |
60 |
| - - Add more tests |
| 79 | + |
| 80 | +- Including certain files (e.g. license.md) in sdists via MANIFEST.in (@proinsias) |
| 81 | +- Relax licensing by moving from BSD to MIT |
| 82 | +- Add Python 3.5 support |
| 83 | +- Add more tests |
61 | 84 |
|
62 | 85 | ## 1.2.0
|
63 | 86 |
|
64 | 87 | Backward incompatible change: (@fabiocaccamo)
|
65 | 88 |
|
66 |
| - - In version < 1.2.0 all single quotes ( ' ) were removed, and |
67 |
| - moving forward, >= 1.2.0, they will be replaced with ( - ). |
68 |
| - Example: |
69 |
| - < 1.2.0 -- ('C\'est déjà l\'été.' -> "cest-deja-lete") |
70 |
| - >= 1.2.0 -- ('C\'est déjà l\'été.' -> "c-est-deja-l-ete") |
| 89 | +- In version < 1.2.0 all single quotes ( ' ) were removed, and |
| 90 | + moving forward, >= 1.2.0, they will be replaced with ( - ). |
| 91 | + Example: |
| 92 | + < 1.2.0 -- ('C\'est déjà l\'été.' -> "cest-deja-lete") |
| 93 | + > = 1.2.0 -- ('C\'est déjà l\'été.' -> "c-est-deja-l-ete") |
71 | 94 |
|
72 | 95 | ## 1.1.4
|
73 | 96 |
|
74 | 97 | Bugfix:
|
75 | 98 |
|
76 |
| - - Add more test cases, dropped `official` support for python 3.2 |
77 |
| - |
| 99 | +- Add more test cases, dropped `official` support for python 3.2 |
78 | 100 |
|
79 | 101 | ## 1.1.3
|
80 | 102 |
|
81 | 103 | Bugfix:
|
82 | 104 |
|
83 |
| - - Handle unichar in python 3.x |
84 |
| - |
| 105 | +- Handle unichar in python 3.x |
85 | 106 |
|
86 | 107 | ## 1.1.2
|
87 | 108 |
|
88 | 109 | Enhancement:
|
89 | 110 |
|
90 |
| - - Ability to remove `stopwords` from string |
91 |
| - |
| 111 | +- Ability to remove `stopwords` from string |
92 | 112 |
|
93 | 113 | ## 1.0.2
|
94 | 114 |
|
95 | 115 | Enhancement:
|
96 | 116 |
|
97 |
| - - A new PyPI release |
98 |
| - |
| 117 | +- A new PyPI release |
99 | 118 |
|
100 | 119 | ## 1.0.1
|
101 | 120 |
|
102 | 121 | Enhancement:
|
103 | 122 |
|
104 |
| - - Promoting to production grade |
105 |
| - |
| 123 | +- Promoting to production grade |
106 | 124 |
|
107 | 125 | ## 0.1.1
|
108 | 126 |
|
109 | 127 | Enhancement:
|
110 | 128 |
|
111 |
| - - Added option to save word order |
112 |
| - - Removed 2to3 dependency |
113 |
| - - Added more tests |
114 |
| - |
| 129 | +- Added option to save word order |
| 130 | +- Removed 2to3 dependency |
| 131 | +- Added more tests |
115 | 132 |
|
116 | 133 | ## 0.1.0
|
117 | 134 |
|
118 | 135 | Enhancement:
|
119 | 136 |
|
120 |
| - - Added more test |
121 |
| - - Added test for python 3.4 |
122 |
| - |
| 137 | +- Added more test |
| 138 | +- Added test for python 3.4 |
123 | 139 |
|
124 | 140 | ## 0.0.9
|
125 | 141 |
|
126 | 142 | Enhancement:
|
127 | 143 |
|
128 |
| - - Enable console_scripts |
129 |
| - |
| 144 | +- Enable console_scripts |
130 | 145 |
|
131 | 146 | ## 0.0.8
|
132 | 147 |
|
133 | 148 | Enhancement:
|
134 | 149 |
|
135 |
| - - Move logic out of __init__.py |
136 |
| - - Added console_scripts (@ekamil) |
137 |
| - - Updated pep8.sh |
138 |
| - - Added pypy support |
139 |
| - |
| 150 | +- Move logic out of **init**.py |
| 151 | +- Added console_scripts (@ekamil) |
| 152 | +- Updated pep8.sh |
| 153 | +- Added pypy support |
140 | 154 |
|
141 | 155 | ## 0.0.7
|
142 | 156 |
|
143 | 157 | Enhancement:
|
144 | 158 |
|
145 |
| - - Handle encoding in setup file |
146 |
| - - Update ReadME, ChangeLog, License files |
147 |
| - |
| 159 | +- Handle encoding in setup file |
| 160 | +- Update ReadME, ChangeLog, License files |
148 | 161 |
|
149 | 162 | ## 0.0.6
|
150 | 163 |
|
151 | 164 | Enhancement:
|
152 | 165 |
|
153 |
| - - Update for smart_truncate |
154 |
| - |
| 166 | +- Update for smart_truncate |
155 | 167 |
|
156 | 168 | ## 0.0.5
|
157 | 169 |
|
158 | 170 | Features:
|
159 | 171 |
|
160 |
| - - Added Python 3.2 and 3.3 support (work by: arthurdarcet@github) |
161 |
| - |
| 172 | +- Added Python 3.2 and 3.3 support (work by: arthurdarcet@github) |
162 | 173 |
|
163 | 174 | ## 0.0.4
|
164 | 175 |
|
165 | 176 | Features:
|
166 | 177 |
|
167 |
| - - Added option to choose non-dash separators (request by: danilodimoia@github) |
168 |
| - |
| 178 | +- Added option to choose non-dash separators (request by: danilodimoia@github) |
169 | 179 |
|
170 | 180 | ## 0.0.3
|
171 | 181 |
|
172 | 182 | Features:
|
173 | 183 |
|
174 |
| - - Added the ability to truncate slugs (request by: juanriaza@github) |
175 |
| - |
| 184 | +- Added the ability to truncate slugs (request by: juanriaza@github) |
176 | 185 |
|
177 | 186 | ## 0.0.2
|
178 | 187 |
|
179 | 188 | Enhancement:
|
180 | 189 |
|
181 |
| - - Incremental update |
182 |
| - |
| 190 | +- Incremental update |
183 | 191 |
|
184 | 192 | ## 0.0.1
|
185 | 193 |
|
186 |
| - - Initial version |
| 194 | +- Initial version |
0 commit comments