2022-07-05 10:10:24 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-semantic_version: updated to 2.10.0
2.10.0
Ensure sorting a collection of versions is always stable, even with
build metadata.
|
2022-04-04 11:58:41 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-semantic_version: updated to 2.9.0
2.9.0
Add support for Django 3.1, 3.2, 4.0
Add support for Python 3.7 / 3.8 / 3.9 / 3.10
|
2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2020-06-01 18:03:03 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-semantic_version: updated to 2.8.5
2.8.5:
Properly handle wildcards in ``SimpleSpec`` (e.g. ``==1.2.*``).
|
2020-03-20 10:31:27 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-semantic_version: updated to 2.8.4
2.8.4:
*Bugfix:*
Properly coerce versions with leading zeroes in components (e.g.
``1.01.007``)
|
2019-12-15 12:36:38 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-semantic_version: updated to 2.8.3
2.8.3:
New:
Add Clause.prettyprint() for debugging
Bugfix:
Fix handling of prerelease ranges within NpmSpec
|
2019-09-18 22:30:32 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-semantic_version: updated to 2.8.2
2.8.2
*Bugfix:*
* Restore computation of ``Spec.specs`` for single-term expressions
(``>=0.1.2``)
2.8.1
*Bugfix:*
* Restored attribute ``Spec.specs``, removed by mistake during the refactor.
2.8.0
*New:*
* Restore support for Python 2.
2.7.1
*Bugfix:*
* Fix parsing of npm-based caret expressions.
2.7.0
This release brings a couple of significant changes:
- Allow to define several range description syntaxes (``SimpleSpec``, \
``NpmSpec``, ...)
- Fix bugs and unexpected behaviours in the ``SimpleSpec`` implementation.
Backwards compatibility has been kept, but users should adjust their code for \
the new features:
- Use ``SimpleSpec`` instead of ``Spec``
- Replace calls to ``Version('1.2', partial=True)`` with ``SimpleSpec('~1.2')``
- ``iter(some_spec)`` is deprecated.
*New:*
* Allow creation of a ``Version`` directly from parsed components, as \
keyword arguments
(``Version(major=1, minor=2, patch=3)``)
* Add ``Version.truncate()`` to build a truncated copy of a ``Version``
* Add ``NpmSpec(...)``, following strict NPM matching rules \
(https://docs.npmjs.com/misc/semver)
* Add ``Spec.parse('xxx', syntax='<syntax>')`` for simpler \
multi-syntax support
* Add ``Version().precedence_key``, for use in ``sort(versions, key=lambda \
v: v.precedence_key)`` calls.
The contents of this attribute is an implementation detail.
*Bugfix:*
* Fix inconsistent behaviour regarding versions with a prerelease specification.
*Deprecated:*
* Deprecate the ``Spec`` class (Removed in 3.1); use the ``SimpleSpec`` \
class instead
* Deprecate the internal ``SpecItem`` class (Removed in 3.0).
* Deprecate the ``partial=True`` form of ``Version``; use ``SimpleSpec`` instead.
*Removed:*
* Remove support for Python2 (End of life 4 months after this release)
*Refactor:*
* Switch spec computation to a two-step process: convert the spec to a \
combination
of simple comparisons with clear semantics, then use those.
|
2018-10-23 11:04:19 by Adam Ciarcinski | Files touched by this commit (1) |
Log message:
py-semantic_version: small fixes to Makefile
|