Skip to content

Commit a0a17b1

Browse files
committed
version bump
1 parent 9e39ed7 commit a0a17b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
for line in Path("sphinx_togglebutton/__init__.py").read_text().split("\n")
88
if "__version__" in line
99
]
10-
version = version[0].split(" = ")[-1]
10+
version = version[0].split(" = ")[-1].strip('"')
1111

1212
with open("./README.rst", "r") as ff:
1313
readme_text = ff.read()

sphinx_togglebutton/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from docutils.parsers.rst import Directive, directives
44
from docutils import nodes
55

6-
__version__ = "0.0.3dev0"
6+
__version__ = "0.1.0dev0"
77

88

99
def st_static_path(app):

0 commit comments

Comments
 (0)