From 6aca5164c12ea190ac5dacb44b0f193305de57f0 Mon Sep 17 00:00:00 2001 From: Phil Elson Date: Tue, 13 Jul 2021 13:02:28 +0200 Subject: [PATCH] Increment the major version of the CARA model and the calculator. --- cara/__init__.py | 2 +- cara/apps/calculator/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cara/__init__.py b/cara/__init__.py index 8f9d169f..0561df4a 100644 --- a/cara/__init__.py +++ b/cara/__init__.py @@ -5,4 +5,4 @@ Documentation for the CARA package """ -__version__ = "0.0.1.dev0" +__version__ = "1.0.0" diff --git a/cara/apps/calculator/__init__.py b/cara/apps/calculator/__init__.py index a6a2b4db..d391442a 100644 --- a/cara/apps/calculator/__init__.py +++ b/cara/apps/calculator/__init__.py @@ -30,7 +30,7 @@ from .user import AuthenticatedUser, AnonymousUser # calculator version. If the calculator needs to make breaking changes (e.g. change # form attributes) then it can also increase its MAJOR version without needing to # increase the overall CARA version (found at ``cara.__version__``). -__version__ = "1.5.1" +__version__ = "2.0.0" class BaseRequestHandler(RequestHandler): diff --git a/setup.py b/setup.py index a50edbc4..5fa01807 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ REQUIREMENTS: dict = { setup( name='CARA', - version="0.0.1.dev0", + version="1.0.0", maintainer='Andre Henriques', maintainer_email='andre.henriques@cern.ch',