From d3ffedca5af338ed652b84c97085e24f5dfa0145 Mon Sep 17 00:00:00 2001 From: faph Date: Sat, 2 Sep 2023 12:16:02 +0100 Subject: [PATCH 1/3] Document that this library uses a calendar-based versioning scheme --- README.rst | 2 ++ docs/index.rst | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.rst b/README.rst index e8bebe74..4e01206a 100644 --- a/README.rst +++ b/README.rst @@ -34,6 +34,8 @@ Use ``pip`` to install these utilities:: pip install packaging +The ``packaging`` library uses calendar-based versioning (``YY.N``). + Discussion ---------- diff --git a/docs/index.rst b/docs/index.rst index 6850e9e8..e658ec08 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -15,6 +15,8 @@ You can install packaging with ``pip``: $ pip install packaging +The ``packaging`` library uses calendar-based versioning (``YY.N``). + .. toctree:: :maxdepth: 1 From e031f4944d85c2baf01b1dc73b1768eebc4b5713 Mon Sep 17 00:00:00 2001 From: faph Date: Sat, 2 Sep 2023 12:26:51 +0100 Subject: [PATCH 2/3] Changelog entry for issue 716 --- CHANGELOG.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6255260a..c48d7fa2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,7 @@ Changelog *unreleased* ~~~~~~~~~~~~ +* Document calendar-based versioning schema (:issue:`716`) * Enforce that the entire marker string is parsed (:issue:`687`) * Requirement parsing no longer automatically validates the URL (:issue:`120`) * Canonicalize names for requirements comparison (:issue:`644`) From 1dd946e1c9feaef5be5afd3461037eb70b097165 Mon Sep 17 00:00:00 2001 From: faph Date: Sat, 2 Sep 2023 12:27:48 +0100 Subject: [PATCH 3/3] Correct typo in "schema" --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c48d7fa2..c1eb10b7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,7 +4,7 @@ Changelog *unreleased* ~~~~~~~~~~~~ -* Document calendar-based versioning schema (:issue:`716`) +* Document calendar-based versioning scheme (:issue:`716`) * Enforce that the entire marker string is parsed (:issue:`687`) * Requirement parsing no longer automatically validates the URL (:issue:`120`) * Canonicalize names for requirements comparison (:issue:`644`)