From e9c4333e75336a69bc9284a9697b386c8b352dfc Mon Sep 17 00:00:00 2001 From: Edward Burnell Date: Sat, 8 Jan 2022 17:08:01 -0700 Subject: [PATCH] version 1.1 --- docs/source/conf.py | 4 ++-- gpkit/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 78d3e7c5..d1c89645 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.9.9' +version = '1.1' # The full version, including alpha/beta/rc tags. -release = '0.9.9' +release = '1.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/gpkit/__init__.py b/gpkit/__init__.py index 01fb36f4..0e65de1f 100644 --- a/gpkit/__init__.py +++ b/gpkit/__init__.py @@ -1,6 +1,6 @@ "GP and SP modeling package" #pylint:disable=wrong-import-position -__version__ = "1.0.0" +__version__ = "1.1" GPCOLORS = ["#59ade4", "#FA3333"] GPBLU, GPRED = GPCOLORS diff --git a/setup.py b/setup.py index bb0c3268..cb7540f9 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ install_requires=["numpy >= 1.16.4", "pint >= 0.8.1", "plotly", "scipy", "adce", "cvxopt >= 1.1.8", "matplotlib"], - version="1.0.0.3", + version="1.1.0", packages=["gpkit", "gpkit.tools", "gpkit.interactive", "gpkit.constraints", "gpkit.nomials", "gpkit.tests", "gpkit.solvers"], package_data={"gpkit": ["env/settings"]},