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

Skip to content

Commit 340b4f9

Browse files
authored
Merge pull request #355 from b0uh/fix/use-https
Use HTTPS instead of HTTP for the website URL
2 parents 54a1af6 + 57690e8 commit 340b4f9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ There are other functions to discover. Read on!
112112
.. |docs| image:: https://readthedocs.org/projects/python-semver/badge/?version=latest
113113
:target: http://python-semver.readthedocs.io/en/latest/?badge=latest
114114
:alt: Documentation Status
115-
.. _semantic versioning: http://semver.org/
115+
.. _semantic versioning: https://semver.org/
116116
.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
117117
:target: https://github.com/psf/black
118118
:alt: Black Formatter

docs/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@ Ubuntu
121121
$ sudo apt-get install python3-semver
122122

123123

124-
.. _semantic versioning: http://semver.org/
124+
.. _semantic versioning: https://semver.org/

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[metadata]
77
name = semver
88
version = attr: semver.__about__.__version__
9-
description = Python helper for Semantic Versioning (http://semver.org)
9+
description = Python helper for Semantic Versioning (https://semver.org)
1010
long_description = file: README.rst
1111
long_description_content_type = text/x-rst
1212
author = Kostiantyn Rybnikov

src/semver/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
__maintainer_email__ = "[email protected]"
3232

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

3636
#: Supported semver specification
3737
SEMVER_SPEC_VERSION = "2.0.0"

0 commit comments

Comments
 (0)