Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bb20850

Browse filesBrowse files
committed
Split up changelog to make more sense.
1 parent f4d0921 commit bb20850
Copy full SHA for bb20850

File tree

2 files changed

+14
-12
lines changed
Filter options

2 files changed

+14
-12
lines changed

‎changelog.d/169.feature.rst

Copy file name to clipboard
+11
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

Copy file name to clipboard
+3-12
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.