From 0763a9d7c8c143ef32fdd88f3dad70eb157fa770 Mon Sep 17 00:00:00 2001
From: Yifan Zhao <yifanz16@illinois.edu>
Date: Wed, 17 Mar 2021 17:44:35 -0500
Subject: [PATCH] Start versioning from 0.3

---
 README.md | 2 +-
 setup.py  | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 30af705..aa7c5c7 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 `predtuner` performs autotuning on program approximation knobs using an error-predictive proxy
 in place of the original program, to greatly speedup autotuning while getting results
-comparable in quality. `current_version == 0.1`.
+comparable in quality. `current_version == 0.3`.
 
 ## Requirements
 
diff --git a/setup.py b/setup.py
index 8790283..3377b9c 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
 
 setuptools.setup(
     name="predtuner",
-    version="0.1",
+    version="0.3",
     author="Yifan Zhao",
     author_email="yifanz16@illinois.edu",
     description="A package for predictive and empirical approximation autotuning",
@@ -22,8 +22,8 @@ setuptools.setup(
         "pandas>=1.1",
         "jsonpickle>=1.5",
         "argparse>=1.4",
-        "wheel",  # Use wheel to build the following: 
+        "wheel",  # Use wheel to build the following:
         "opentuner==0.8.3",  # Must be 0.8.3, they fixed an important bug
-        "sqlalchemy==1.3"
-    ]
+        "sqlalchemy==1.3",
+    ],
 )
-- 
GitLab