python-semver 3.0.2-1 source package in Ubuntu

Changelog

python-semver (3.0.2-1) unstable; urgency=medium

  [ Ben Finney ]
  * New upstream version.
    Highlights since previous release:
    * New top-level `Version` class with different API
      (backward-compatible with old `VersionInfo`).
    * `Version.parse` parameter `optional_minor_and_patch` allows parsing
      version strings with less detail.
    * `Version.match` also accepts a version string to check for a match.
    * Support for Python 3.7 and later only.
    * Python package reorganisation.
    (Closes: #1081140).

 -- Thomas Goirand <email address hidden>  Mon, 10 Mar 2025 13:25:34 +0100

Upload details

Uploaded by:
Debian OpenStack
Uploaded to:
Sid
Original maintainer:
Debian OpenStack
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Stonking release universe misc
Resolute release universe misc
Questing release universe misc
Plucky release universe misc

Builds

Plucky: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-semver_3.0.2-1.dsc 2.1 KiB 85d98bac776d158078cc4f3e234dcd2104e6c3c33b0bfd52a0d4471fc9be1122
python-semver_3.0.2.orig.tar.xz 191.9 KiB e6f4d94fa22672b259dd31592807faacf9cc0bb6d772ce2a6cc98af23203a962
python-semver_3.0.2-1.debian.tar.xz 3.4 KiB def2ed4c8433bcaa17ac5d41ad0bb0a0f43d4bfbf417cd05eb7b881a81096b2a

Available diffs

No changes file available.

Binary packages built by this source

python3-semver: library for Semantic Versioning standard versions – Python 3

 This Python module helps to compare versions according to the Semantic
 Versioning standard <https://semver.org/>. The system is like this: given
 a version number “MAJOR.MINOR.PATCH”, increment the:
  * MAJOR version when you make incompatible API changes,
  * MINOR version when you add functionality in a backwards-compatible
    manner,
  * PATCH version when you make backwards-compatible bug fixes.
 .
 Additional labels for pre-release and build metadata are available as
 extensions to the “MAJOR.MINOR.PATCH” format.
 .
 This package contains the Python 3 module.