CHANGELOG 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. ##########
  2. Change Log
  3. ##########
  4. Python SemVer library
  5. #####################
  6. All notable changes to this code base will be documented in this file,
  7. in every released version.
  8. Version 2.6.0
  9. =============
  10. :Released: 2016-06-08
  11. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  12. Removals
  13. --------
  14. * Remove comparison of build component.
  15. SemVer 2.0.0 specification recommends that build component is
  16. ignored in comparisons.
  17. Version 2.5.0
  18. =============
  19. :Released: 2016-05-25
  20. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  21. Additions
  22. ---------
  23. * Support matching 'not equal' with “!=”.
  24. Changes
  25. -------
  26. * Make separate builds for tests on Travis CI.
  27. Version 2.4.2
  28. =============
  29. :Released: 2016-05-16
  30. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  31. Changes
  32. -------
  33. * Migrate README document to reStructuredText format.
  34. * Use Setuptools for distribution management.
  35. * Migrate test cases to Py.test.
  36. * Add configuration for Tox test runner.
  37. Version 2.4.1
  38. =============
  39. :Released: 2016-03-04
  40. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  41. Additions
  42. ---------
  43. * [GitHub issue #23] Compare build component of a version.
  44. Version 2.4.0
  45. =============
  46. :Released: 2016-02-12
  47. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  48. Bug Fixes
  49. ---------
  50. * [GitHub issue #21] Compare alphanumeric components correctly.
  51. Version 2.3.1
  52. =============
  53. :Released: 2016-01-30
  54. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  55. Additions
  56. ---------
  57. * Declare granted license name in distribution metadata.
  58. Version 2.3.0
  59. =============
  60. :Released: 2016-01-29
  61. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  62. Additions
  63. ---------
  64. * Add functions to increment prerelease and build components in a
  65. version.
  66. Version 2.2.1
  67. =============
  68. :Released: 2015-08-04
  69. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  70. Bug Fixes
  71. ---------
  72. * Correct comparison when any component includes zero.
  73. Version 2.2.0
  74. =============
  75. :Released: 2015-06-21
  76. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  77. Additions
  78. ---------
  79. * Add functions to determined minimum and maximum version.
  80. * Add code examples for recently-added functions.
  81. Version 2.1.2
  82. =============
  83. :Released: 2015-05-23
  84. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  85. Bug Fixes
  86. ---------
  87. * Restore current README document to distribution manifest.
  88. Version 2.1.1
  89. =============
  90. :Released: 2015-05-23
  91. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  92. Bug Fixes
  93. ---------
  94. * Remove absent document from distribution manifest.
  95. Version 2.1.0
  96. =============
  97. :Released: 2015-05-22
  98. :Maintainer: Kostiantyn Rybnikov <k-bx@k-bx.com>
  99. Additions
  100. ---------
  101. * Document installation instructions.
  102. * Document project home page.
  103. * Add function to format a version string from components.
  104. * Add functions to increment specific components in a version.
  105. Changes
  106. -------
  107. * Migrate README document to Markdown format.
  108. Bug Fixes
  109. ---------
  110. * Correct code examples in README document.
  111. Version 2.0.2
  112. =============
  113. :Released: 2015-04-14
  114. :Maintainer: Konstantine Rybnikov <k-bx@k-bx.com>
  115. Additions
  116. ---------
  117. * Add configuration for Travis continuous integration.
  118. * Explicitly declare supported Python versions.
  119. Version 2.0.1
  120. =============
  121. :Released: 2014-09-24
  122. :Maintainer: Konstantine Rybnikov <k-bx@k-bx.com>
  123. Bug Fixes
  124. ---------
  125. * [GitHub issue #9] Correct comparison of equal version strings.
  126. Version 2.0.0
  127. =============
  128. :Released: 2014-05-24
  129. :Maintainer: Konstantine Rybnikov <k-bx@k-bx.com>
  130. Additions
  131. ---------
  132. * Grant license in this code base under BSD 3-clause license terms.
  133. Changes
  134. -------
  135. * Update parser to SemVer standard 2.0.0.
  136. * Ignore build component for comparison.
  137. Version 0.0.2
  138. =============
  139. :Released: 2012-05-10
  140. :Maintainer: Konstantine Rybnikov <k-bx@k-bx.com>
  141. Changes
  142. -------
  143. * Use standard library Distutils for distribution management.
  144. Version 0.0.1
  145. =============
  146. :Released: 2012-04-28
  147. :Maintainer: Konstantine Rybnikov <kost-bebix@yandex.ru>
  148. * Initial release.
  149. ..
  150. Local variables:
  151. coding: utf-8
  152. mode: text
  153. mode: rst
  154. End:
  155. vim: fileencoding=utf-8 filetype=rst :