blob: d13b8874085567100800f5e9b7e676f95fc39b89 (
plain)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
##########
Change Log
##########
Python SemVer library
#####################
All notable changes to this code base will be documented in this file,
in every released version.
Version 2.7.9
=============
:Released: 2017-09-23
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
* Issue #65 (PR #66). Add finalize_version function
Version 2.7.8
=============
:Released: 2017-08-25
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
* PR #62. Support custom default names for pre and build
Version 2.7.7
=============
:Released: 2017-05-25
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
* Issue #54 (PR #55) Add comparision between VersionInfo objects
* PR #56. Add support for Python 3.6
Version 2.7.2
=============
:Released: 2016-11-08
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Additions
---------
* Fix issue #37 (Remove trailing zeros from prelease doesn't allow to
parse 0 pre-release version)
* Add ‘parse_version_info’ to parse a version string to a version info
tuple.
Bug Fixes
---------
* Refine parsing to conform more strictly to SemVer 2.0.0.
SemVer 2.0.0 specification §9 forbids leading zero on identifiers in
the prerelease version.
Version 2.6.0
=============
:Released: 2016-06-08
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Removals
--------
* Remove comparison of build component.
SemVer 2.0.0 specification recommends that build component is
ignored in comparisons.
Version 2.5.0
=============
:Released: 2016-05-25
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Additions
---------
* Support matching 'not equal' with “!=”.
Changes
-------
* Make separate builds for tests on Travis CI.
Version 2.4.2
=============
:Released: 2016-05-16
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Changes
-------
* Migrate README document to reStructuredText format.
* Use Setuptools for distribution management.
* Migrate test cases to Py.test.
* Add configuration for Tox test runner.
Version 2.4.1
=============
:Released: 2016-03-04
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Additions
---------
* [GitHub issue #23] Compare build component of a version.
Version 2.4.0
=============
:Released: 2016-02-12
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Bug Fixes
---------
* [GitHub issue #21] Compare alphanumeric components correctly.
Version 2.3.1
=============
:Released: 2016-01-30
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Additions
---------
* Declare granted license name in distribution metadata.
Version 2.3.0
=============
:Released: 2016-01-29
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Additions
---------
* Add functions to increment prerelease and build components in a
version.
Version 2.2.1
=============
:Released: 2015-08-04
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Bug Fixes
---------
* Correct comparison when any component includes zero.
Version 2.2.0
=============
:Released: 2015-06-21
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Additions
---------
* Add functions to determined minimum and maximum version.
* Add code examples for recently-added functions.
Version 2.1.2
=============
:Released: 2015-05-23
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Bug Fixes
---------
* Restore current README document to distribution manifest.
Version 2.1.1
=============
:Released: 2015-05-23
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Bug Fixes
---------
* Remove absent document from distribution manifest.
Version 2.1.0
=============
:Released: 2015-05-22
:Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
Additions
---------
* Document installation instructions.
* Document project home page.
* Add function to format a version string from components.
* Add functions to increment specific components in a version.
Changes
-------
* Migrate README document to Markdown format.
Bug Fixes
---------
* Correct code examples in README document.
Version 2.0.2
=============
:Released: 2015-04-14
:Maintainer: Konstantine Rybnikov <k-bx@k-bx.com>
Additions
---------
* Add configuration for Travis continuous integration.
* Explicitly declare supported Python versions.
Version 2.0.1
=============
:Released: 2014-09-24
:Maintainer: Konstantine Rybnikov <k-bx@k-bx.com>
Bug Fixes
---------
* [GitHub issue #9] Correct comparison of equal version strings.
Version 2.0.0
=============
:Released: 2014-05-24
:Maintainer: Konstantine Rybnikov <k-bx@k-bx.com>
Additions
---------
* Grant license in this code base under BSD 3-clause license terms.
Changes
-------
* Update parser to SemVer standard 2.0.0.
* Ignore build component for comparison.
Version 0.0.2
=============
:Released: 2012-05-10
:Maintainer: Konstantine Rybnikov <k-bx@k-bx.com>
Changes
-------
* Use standard library Distutils for distribution management.
Version 0.0.1
=============
:Released: 2012-04-28
:Maintainer: Konstantine Rybnikov <kost-bebix@yandex.ru>
* Initial release.
..
Local variables:
coding: utf-8
mode: text
mode: rst
End:
vim: fileencoding=utf-8 filetype=rst :
|