Skip to content

Commit

Permalink
Bump version: 0.1.0 → 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed May 1, 2023
1 parent d6c57f0 commit 4af5e6c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 1.0.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion .cookiecutterrc
Expand Up @@ -40,7 +40,7 @@ default_context:
sphinx_doctest: 'yes'
sphinx_theme: sphinx-rtd-theme
test_matrix_separate_coverage: 'yes'
version: 0.1.0
version: 1.0.0
version_manager: bump2version
website: https://blog.ionelmc.ro
year_from: '2019'
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -52,9 +52,9 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/nameless

.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-nameless/v0.1.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-nameless/v1.0.0.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/python-nameless/compare/v0.1.0...main
:target: https://github.com/ionelmc/python-nameless/compare/v1.0.0...main


.. |scrutinizer| image:: https://img.shields.io/scrutinizer/quality/g/ionelmc/python-nameless/main.svg
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -24,7 +24,7 @@
version = release = get_distribution("nameless").version
except Exception:
traceback.print_exc()
version = release = "0.1.0"
version = release = "1.0.0"

pygments_style = "trac"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -77,7 +77,7 @@ def read(*names, **kwargs):
use_scm_version={
"local_scheme": "dirty-tag",
"write_to": "src/nameless/_version.py",
"fallback_version": "0.1.0",
"fallback_version": "1.0.0",
},
license="BSD-2-Clause",
description="An example package. Generated with cookiecutter-pylibrary.",
Expand Down
2 changes: 1 addition & 1 deletion src/nameless/__init__.py
@@ -1,4 +1,4 @@
__version__ = "0.1.0"
__version__ = "1.0.0"
try:
from ._nameless import longest
except ImportError:
Expand Down

0 comments on commit 4af5e6c

Please sign in to comment.