Skip to content

Commit a9290bc

Browse files
committed
Increment version numbers for release
1 parent 2fad042 commit a9290bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
long_description = fh.read()
1010

1111
setup(name='svgling',
12-
version='0.2.0',
12+
version='0.3.0',
1313
description='SVG+Python based rendering of linguistics-style (constituent) trees',
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",

svgling/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__all__ = ['core', 'figure', 'semantics', 'html', '__main__']
22

3-
__version_info__ = (0, 2, 0)
4-
__release__ = False
3+
__version_info__ = (0, 3, 0)
4+
__release__ = True
55
__version__ = ".".join(str(i) for i in __version_info__)
66

77
import svgling.core

0 commit comments

Comments
 (0)