Skip to content

Commit bb20850

Browse files
committed
Split up changelog to make more sense.
1 parent f4d0921 commit bb20850

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

changelog.d/169.feature.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Create semver package and split code among different modules in the packages.
2+
3+
* Remove :file:`semver.py`
4+
* Create :file:`src/semver/__init__.py`
5+
* Create :file:`src/semver/cli.py` for all CLI methods
6+
* Create :file:`src/semver/_deprecated.py` for the ``deprecated`` decorator and other deprecated functions
7+
* Create :file:`src/semver/__main__.py` to allow calling the CLI using :command:`python -m semver`
8+
* Create :file:`src/semver/_types.py` to hold type aliases
9+
* Create :file:`src/semver/version.py` to hold the :class:`VersionInfo` class and its utility functions
10+
* Create :file:`src/semver/__about__.py` for all the metadata variables
11+

changelog.d/169.trivial.rst

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
1-
Create semver package and split code among different modules in the packages.
2-
3-
* Remove :file:`semver.py`
4-
* Create :file:`src/semver/__init__.py`
5-
* Create :file:`src/semver/cli.py` for all CLI methods
6-
* Create :file:`src/semver/_deprecated.py` for the ``deprecated`` decorator and other deprecated functions
7-
* Create :file:`src/semver/__main__.py` to allow calling the CLI using :command:`python -m semver`
8-
* Create :file:`src/semver/_types.py` to hold type aliases
9-
* Create :file:`src/semver/version.py` to hold the :class:`VersionInfo` class and its utility functions
10-
* Create :file:`src/semver/__about__.py` for all the metadata variables
11-
121
Adapted infrastructure code to the new project layout.
132

143
* Replace :file:`setup.py` with :file:`setup.cfg` because the :file:`setup.cfg` is easier to use
154
* Adapt documentation code snippets where needed
165
* Adapt tests
17-
* Changed the ``deprecated`` to hardcode the ``semver`` package name in the warning.
6+
* Changed the ``deprecated`` to hardcode the ``semver`` package name in the warning.
7+
8+
Increase coverage to 100% for all non-deprecated APIs

0 commit comments

Comments
 (0)