Skip to content

Commit 3fff9f8

Browse files
committed
v.0.1.0 release
1 parent 5a13ff9 commit 3fff9f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

oatomobile/_metadata.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"""Package metadata for OATomobile.
1616
1717
This is kept in a separate module so that it can be imported from
18-
setup.py, at a time when acme's dependencies may not have been installed
18+
setup.py, at a time when acme"s dependencies may not have been installed
1919
yet.
2020
"""
2121

2222
# We follow Semantic Versioning (https://semver.org/)
23-
_MAJOR_VERSION = '0'
24-
_MINOR_VERSION = '0'
25-
_PATCH_VERSION = '1'
23+
_MAJOR_VERSION = "0"
24+
_MINOR_VERSION = "1"
25+
_PATCH_VERSION = "0"
2626

27-
# Example: '0.4.2'
28-
__version__ = '.'.join([_MAJOR_VERSION, _MINOR_VERSION, _PATCH_VERSION])
27+
# Example: "0.4.2"
28+
__version__ = ".".join([_MAJOR_VERSION, _MINOR_VERSION, _PATCH_VERSION])

0 commit comments

Comments
 (0)