Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Create 3.0.0-dev.4 Release #385

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,94 @@ in our repository.

.. towncrier release notes start

Version 3.0.0-dev.4
===================

:Released: 2022-12-18
:Maintainer:


Bug Fixes
---------

* :gh:`374`: Correct Towncrier's config entries in the :file:`pyproject.toml` file.
The old entries ``[[tool.towncrier.type]]`` are deprecated and need
to be replaced by ``[tool.towncrier.fragment.<TYPE>]``.



Deprecations
------------

* :gh:`372`: Deprecate support for Python 3.6.

Python 3.6 reached its end of life and isn't supported anymore.
At the time of writing (Dec 2022), the lowest version is 3.7.

Although the `poll <https://github.com/python-semver/python-semver/discussions/371>`_
didn't cast many votes, the majority agree to remove support for
Python 3.6.



Improved Documentation
----------------------

* :gh:`335`: Add new section "Converting versions between PyPI and semver" the limitations
and possible use cases to convert from one into the other versioning scheme.

* :gh:`340`: Describe how to get version from a file

* :gh:`343`: Describe combining Pydantic with semver in the "Advanced topic"
section.

* :gh:`350`: Restructure usage section. Create subdirectory "usage/" and splitted
all section into different files.

* :gh:`351`: Introduce new topics for:

* "Migration to semver3"
* "Advanced topics"



Features
--------

* :pr:`359`: Add optional parameter ``optional_minor_and_patch`` in :meth:`.Version.parse` to allow optional
minor and patch parts.

* :pr:`362`: Make :meth:`.Version.match` accept a bare version string as match expression, defaulting to
equality testing.

* :gh:`364`: Enhance :file:`pyproject.toml` to make it possible to use the
:command:`pyproject-build` command from the build module.
For more information, see :ref:`build-semver`.

* :gh:`365`: Improve :file:`pyproject.toml`.

* Use setuptools, add metadata. Taken approach from
`A Practical Guide to Setuptools and Pyproject.toml
<https://godatadriven.com/blog/a-practical-guide-to-setuptools-and-pyproject-toml/>`_.
* Doc: Describe building of semver
* Remove :file:`.travis.yml` in :file:`MANIFEST.in`
(not needed anymore)
* Distinguish between Python 3.6 and others in :file:`tox.ini`
* Add skip_missing_interpreters option for :file:`tox.ini`
* GH Action: Upgrade setuptools and setuptools-scm and test
against 3.11.0-rc.2



Trivial/Internal Changes
------------------------

* :gh:`378`: Fix some typos in Towncrier configuration



----


Version 3.0.0-dev.3
===================
Expand Down
9 changes: 6 additions & 3 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors
############

Python SemVer library
Python Semver library
#####################

This document records the primary maintainers and significant
Expand All @@ -14,9 +14,13 @@ Thank you to everyone whose work has made this possible.
Primary maintainers
===================

* Kostiantyn Rybnikov <[email protected]>
* Tom Schraitle <[email protected]>
* Sébastien Celles <[email protected]>

Old maintainer:

* Kostiantyn Rybnikov <[email protected]>


Significant contributors
========================
Expand All @@ -37,7 +41,6 @@ Significant contributors
* robi-wan <[email protected]>
* sbrudenell <[email protected]>
* T. Jameson Little <[email protected]>
* Tom Schraitle <[email protected]>
* Thomas Laferriere <[email protected]>
* Tuure Laurinolli <[email protected]>
* Tyler Cross <[email protected]>
Expand Down
2 changes: 0 additions & 2 deletions changelog.d/335.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/340.doc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/343.doc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/350.doc.rst

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/351.doc.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/364.feature.rst

This file was deleted.

8 changes: 0 additions & 8 deletions changelog.d/372.deprecation.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/374.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/378.trivial.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/pr359.feature.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/pr362.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion docs/usage/semver-version.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Getting the Version of semver
To know the version of semver itself, use the following construct::

>>> semver.__version__
'3.0.0-dev.3'
'3.0.0-dev.4'
2 changes: 1 addition & 1 deletion src/semver/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"""

#: Semver version
__version__ = "3.0.0-dev.3"
__version__ = "3.0.0-dev.4"

#: Original semver author
__author__ = "Kostiantyn Rybnikov"
Expand Down