Skip to content

Commit

Permalink
v.0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
filangelos committed Jul 9, 2020
1 parent 5a13ff9 commit 3fff9f8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions oatomobile/_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
"""Package metadata for OATomobile.
This is kept in a separate module so that it can be imported from
setup.py, at a time when acme's dependencies may not have been installed
setup.py, at a time when acme"s dependencies may not have been installed
yet.
"""

# We follow Semantic Versioning (https://semver.org/)
_MAJOR_VERSION = '0'
_MINOR_VERSION = '0'
_PATCH_VERSION = '1'
_MAJOR_VERSION = "0"
_MINOR_VERSION = "1"
_PATCH_VERSION = "0"

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

0 comments on commit 3fff9f8

Please sign in to comment.