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

Skip to content
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
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ There are other functions to discover. Read on!
.. |docs| image:: https://readthedocs.org/projects/python-semver/badge/?version=latest
:target: http://python-semver.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. _semantic versioning: http://semver.org/
.. _semantic versioning: https://semver.org/
.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
:alt: Black Formatter
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ Ubuntu
$ sudo apt-get install python3-semver


.. _semantic versioning: http://semver.org/
.. _semantic versioning: https://semver.org/
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[metadata]
name = semver
version = attr: semver.__about__.__version__
description = Python helper for Semantic Versioning (http://semver.org)
description = Python helper for Semantic Versioning (https://semver.org)
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Kostiantyn Rybnikov
Expand Down
2 changes: 1 addition & 1 deletion src/semver/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
__maintainer_email__ = "[email protected]"

#: Short description about semver
__description__ = "Python helper for Semantic Versioning (http://semver.org)"
__description__ = "Python helper for Semantic Versioning (https://semver.org)"

#: Supported semver specification
SEMVER_SPEC_VERSION = "2.0.0"