Skip to content

Commit ef183fa

Browse files
committed
Increment version
1 parent 76abe42 commit ef183fa

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

casefy/casefy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Utilities for string case conversion."""
22

3-
__version__ = "0.1.0"
3+
__version__ = "0.1.1"
44

55
import re
66
from typing import List

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
author = 'Diego Miguel Lozano'
2222

2323
# The full version, including alpha/beta/rc tags
24-
release = '0.1.0'
24+
release = '0.1.1'
2525

2626

2727
# -- General configuration ---------------------------------------------------

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = casefy
3-
version = 0.1.0
3+
version = 0.1.1
44
author = Diego Miguel Lozano
55
author_email = [email protected]
66
description = Utilities for string case conversion.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="casefy",
8-
version="0.1.0",
8+
version="0.1.1",
99
author="Diego Miguel Lozano",
1010
author_email="[email protected]",
1111
description="Utilities for string case conversion.",

tests/test_casefy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Tests for casefy."""
22

3-
__version__ = "0.1.0"
3+
__version__ = "0.1.1"
44

55

66
import sys

0 commit comments

Comments
 (0)