From 8c318f87cdc0340f479a10a4544b0f38b6c151a6 Mon Sep 17 00:00:00 2001 From: Shreyas Ananthan Date: Sat, 3 Jul 2021 07:16:10 -0600 Subject: [PATCH] Prepare CPL for v2.0.0 release --- caelus/version.py | 2 +- docs/source/conf.py | 6 +++--- etc/conda/caelus/meta.yaml | 2 +- etc/conda/conda-pkg.bat | 2 +- etc/conda/conda-pkg.sh | 2 +- etc/conda/installer/construct-template.yaml | 2 +- etc/misc/bump-versions.sh | 2 +- setup.py | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/caelus/version.py b/caelus/version.py index 671a64c..bbf0e62 100644 --- a/caelus/version.py +++ b/caelus/version.py @@ -8,7 +8,7 @@ import subprocess import shlex -_basic_version = "v1.0.2" +_basic_version = "v2.0.0" def git_describe(): """Get version from git-describe""" diff --git a/docs/source/conf.py b/docs/source/conf.py index 0aa8668..766daaa 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -67,9 +67,9 @@ # built documents. # # The short X.Y version. -version = u'v1.0.2' +version = u'v2.0.0' # The full version, including alpha/beta/rc tags. -release = u'v1.0.2' +release = u'v2.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -137,7 +137,7 @@ # The name for this set of Sphinx documents. # " v documentation" by default. -#html_title = u'Caelus Python v1.0.2' +#html_title = u'Caelus Python v2.0.0' # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None diff --git a/etc/conda/caelus/meta.yaml b/etc/conda/caelus/meta.yaml index 32a39af..4e5c3b2 100644 --- a/etc/conda/caelus/meta.yaml +++ b/etc/conda/caelus/meta.yaml @@ -2,7 +2,7 @@ package: name: caelus - version: "v1.0.2" + version: "v2.0.0" source: git_rev: master diff --git a/etc/conda/conda-pkg.bat b/etc/conda/conda-pkg.bat index 6e06693..0f4f8d8 100644 --- a/etc/conda/conda-pkg.bat +++ b/etc/conda/conda-pkg.bat @@ -6,7 +6,7 @@ REM ### Create a Conda package for Caelus Python Library REM # Run from the script directory cd "%~dp0" || exit /B 1 -set caelus_version="v1.0.2" +set caelus_version="v2.0.0" set script_dir="%~dp0" REM Activate base/root environment for build and constructor diff --git a/etc/conda/conda-pkg.sh b/etc/conda/conda-pkg.sh index 88579b5..e7aeaf7 100755 --- a/etc/conda/conda-pkg.sh +++ b/etc/conda/conda-pkg.sh @@ -9,7 +9,7 @@ set -e # Run from the script directory cd ${0%/*} || exit 1 -caelus_version="v1.0.2" +caelus_version="v2.0.0" script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # Set up conda environment diff --git a/etc/conda/installer/construct-template.yaml b/etc/conda/installer/construct-template.yaml index 5350e82..15748e5 100644 --- a/etc/conda/installer/construct-template.yaml +++ b/etc/conda/installer/construct-template.yaml @@ -1,7 +1,7 @@ # Custom conda installer for Caelus Python Library name: caelus-conda -version: v1.0.2 +version: v2.0.0 install_in_dependency_order: True diff --git a/etc/misc/bump-versions.sh b/etc/misc/bump-versions.sh index 97da200..c15d71d 100755 --- a/etc/misc/bump-versions.sh +++ b/etc/misc/bump-versions.sh @@ -14,5 +14,5 @@ FILES=(setup.py ) for fname in ${FILES[@]} ; do - sed -i '' -e 's/1.0.1/1.0.2/' ${fname} + sed -i '' -e 's/1.0.2/2.0.0/' ${fname} done diff --git a/setup.py b/setup.py index a3b7fc9..bb7e4ac 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ from setuptools import setup -VERSION = "1.0.2" +VERSION = "2.0.0" classifiers = [ "Development Status :: 3 -Alpha",