Skip to content

Commit

Permalink
[FIX] Readme Code Badges
Browse files Browse the repository at this point in the history
Semantic Version Check v1.0.1 Release
  • Loading branch information
boromir674 committed May 18, 2022
2 parents 9e81952 + 3e8853c commit d9d5091
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 14 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
Changelog
=========

1.0.1 (2022-05-18)
==================

Changes
^^^^^^^

fix
"""
- readme


1.0.0 (2022-05-18)
==================

Expand Down
22 changes: 11 additions & 11 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Open a console and run:

.. code-block:: shell
semantic-version-check 1.0.0
semantic-version-check 1.0.1
echo $?
echo "Exit code is 0 meaning operation succeeded"
Expand Down Expand Up @@ -134,11 +134,11 @@ License

.. Code Coverage
.. |coverage| image:: https://img.shields.io/codecov/c/github/boromir674/cookiecutter-python-package/master?logo=codecov
.. |coverage| image:: https://img.shields.io/codecov/c/github/boromir674/semantic-version-check/master?logo=codecov
:alt: Codecov
:target: https://app.codecov.io/gh/boromir674/cookiecutter-python-package
:target: https://app.codecov.io/gh/boromir674/semantic-version-check

..PyPI
.. PyPI
.. |release_version| image:: https://img.shields.io/pypi/v/semantic_version_check
:alt: Production Version
Expand All @@ -154,9 +154,9 @@ License

.. Github Releases & Tags
.. |commits_since_specific_tag_on_master| image:: https://img.shields.io/github/commits-since/boromir674/semantic-version-check/v1.0.0/master?color=blue&logo=github
.. |commits_since_specific_tag_on_master| image:: https://img.shields.io/github/commits-since/boromir674/semantic-version-check/v1.0.1/master?color=blue&logo=github
:alt: GitHub commits since tagged version (branch)
:target: https://github.com/boromir674/semantic-version-check/compare/v1.0.0..master
:target: https://github.com/boromir674/semantic-version-check/compare/v1.0.1..master

.. |commits_since_latest_github_release| image:: https://img.shields.io/github/commits-since/boromir674/semantic-version-check/latest?color=blue&logo=semver&sort=semver
:alt: GitHub commits since latest release (by SemVer)
Expand All @@ -174,18 +174,18 @@ License
.. Better Code Hub
.. Software Design Patterns
.. |better_code_hub| image:: https://bettercodehub.com/edge/badge/boromir674/cookiecutter-python-package?branch=master
.. |better_code_hub| image:: https://bettercodehub.com/edge/badge/boromir674/semantic-version-check?branch=master
:alt: Better Code Hub
:target: https://bettercodehub.com/


.. Code Climate CI
.. Code maintainability & Technical Debt
.. |maintainability| image:: https://img.shields.io/codeclimate/maintainability/boromir674/biskotaki
.. |maintainability| image:: https://img.shields.io/codeclimate/maintainability/boromir674/semantic-version-check
:alt: Code Climate Maintainability
:target: https://codeclimate.com/github/boromir674/cookiecutter-python-package/maintainability
:target: https://codeclimate.com/github/boromir674/semantic-version-check/maintainability

.. |tech-debt| image:: https://img.shields.io/codeclimate/tech-debt/boromir674/cookiecutter-python-package
.. |tech-debt| image:: https://img.shields.io/codeclimate/tech-debt/boromir674/semantic-version-check
:alt: Technical Debt
:target: https://codeclimate.com/github/boromir674/cookiecutter-python-package/maintainability
:target: https://codeclimate.com/github/boromir674/semantic-version-check/maintainability
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
## Setuptools specific information
name = semantic_version_check
version = 1.0.0
version = 1.0.1
# renders on pypi as subtitle
description = Check if a 'version' is a valid Semantic Version.
long_description = file: README.rst
Expand All @@ -15,7 +15,7 @@ author_email = k.lampridis@hotmail.com
# represents the web home page of the project
url = https://github.com/boromir674/semantic-version-check

download_url = https://github.com/boromir674/semantic-version-check/archive/v1.0.0.tar.gz
download_url = https://github.com/boromir674/semantic-version-check/archive/v1.0.1.tar.gz


## PyPi specific information
Expand Down
2 changes: 1 addition & 1 deletion src/semantic_version_check/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.0.0'
__version__ = '1.0.1'

from .main import regex, version_check

Expand Down

0 comments on commit d9d5091

Please sign in to comment.