From 3fff9f804d699b1eb3b871fc352ad4def73a54c4 Mon Sep 17 00:00:00 2001 From: filangel Date: Thu, 9 Jul 2020 10:08:50 +0100 Subject: [PATCH] v.0.1.0 release --- oatomobile/_metadata.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/oatomobile/_metadata.py b/oatomobile/_metadata.py index 66a39f3..25ab09d 100644 --- a/oatomobile/_metadata.py +++ b/oatomobile/_metadata.py @@ -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])