From ea1eeeaf41c175623092f20537a86b3bacafdb53 Mon Sep 17 00:00:00 2001 From: Arnaud Bergeron Date: Wed, 30 Aug 2017 12:16:18 -0400 Subject: [PATCH] Changes for release 0.7.0 --- doc/conf.py | 4 ++-- release.txt | 1 + setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index e8ee873f82..7768f2ed3b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = '0.6' +version = '0.7' # The full version, including alpha/beta/rc tags. -release = '0.6.9' +release = '0.7.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/release.txt b/release.txt index a90f758d39..1d5922fe14 100644 --- a/release.txt +++ b/release.txt @@ -3,6 +3,7 @@ Release process: - Update the version in setup.py - Update the version in doc/conf.py - Update the version in .appveyor.yml +- Update the version in conda/{libgpuarray,pygpu}/meta.yaml - Commit the changes with message "Changes for release X.Y.Z" git commit -m "Changes for release X.Y.Z" - Make a git tag diff --git a/setup.py b/setup.py index dc8c1cbec4..29e9f60e77 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ MAJOR = 0 MINOR = 7 PATCH = 0 -SUFFIX = '.dev0' # include the '.' +SUFFIX = '' # include the '.' FULLVERSION = '%d.%d.%d%s' % (MAJOR, MINOR, PATCH, SUFFIX) try: