Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlls committed Feb 13, 2022
1 parent 76abe42 commit ef183fa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion casefy/casefy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Utilities for string case conversion."""

__version__ = "0.1.0"
__version__ = "0.1.1"

import re
from typing import List
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = 'Diego Miguel Lozano'

# The full version, including alpha/beta/rc tags
release = '0.1.0'
release = '0.1.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = casefy
version = 0.1.0
version = 0.1.1
author = Diego Miguel Lozano
author_email = [email protected]
description = Utilities for string case conversion.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="casefy",
version="0.1.0",
version="0.1.1",
author="Diego Miguel Lozano",
author_email="[email protected]",
description="Utilities for string case conversion.",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_casefy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for casefy."""

__version__ = "0.1.0"
__version__ = "0.1.1"


import sys
Expand Down

0 comments on commit ef183fa

Please sign in to comment.