Skip to content

Commit

Permalink
Fix documentation bugs (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
makukha authored Aug 8, 2024
1 parent 03a690f commit f0974ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
[tool.bumpversion]
current_version = "0.6.3"
current_version = "0.6.4"
allow_dirty = true

[[tool.bumpversion.files]]
filename = "src/caseutil.py"

[[tool.bumpversion.files]]
filename = "README.md"
search = "/{current_version}/"
replace = "/{new_version}/"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# caseutil ⇄ 🐍🐫🍢
> Case convert and verify for Python: snake_case, camelCase, kebab-case, etc.
>
[![license](https://img.shields.io/github/license/makukha/caseutil.svg)](https://github.com/makukha/caseutil/blob/main/LICENSE)
[![Tests](https://raw.githubusercontent.com/makukha/caseutil/0.6.3/docs/badge/tests.svg)](https://github.com/makukha/caseutil)
[![Coverage](https://raw.githubusercontent.com/makukha/caseutil/0.6.3/docs/badge/coverage.svg)](https://github.com/makukha/caseutil)
[![Tests](https://raw.githubusercontent.com/makukha/caseutil/0.6.4/docs/badge/tests.svg)](https://github.com/makukha/caseutil)
[![Coverage](https://raw.githubusercontent.com/makukha/caseutil/0.6.4/docs/badge/coverage.svg)](https://github.com/makukha/caseutil)
[](https://api.securityscorecards.dev/projects/github.com/anuraghazra/github-readme-stats/badge)
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/9342/badge)](https://www.bestpractices.dev/projects/9342) \
[![pypi](https://img.shields.io/pypi/v/caseutil.svg)](https://pypi.python.org/pypi/caseutil)
[![pypi](https://img.shields.io/pypi/v/caseutil.svg#0.6.4)](https://pypi.python.org/pypi/caseutil)
[![versions](https://img.shields.io/pypi/pyversions/caseutil.svg)](https://pypi.org/project/caseutil)


Expand Down
2 changes: 1 addition & 1 deletion src/caseutil.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Case convert and verify for Python: snake_case, camelCase, kebab-case, and more.
"""
__version__ = '0.6.3'
__version__ = '0.6.4'

from argparse import ArgumentParser
from io import TextIOBase
Expand Down

0 comments on commit f0974ff

Please sign in to comment.