From 8edcec87e0a807a006e0dc538c457adb80c323ca Mon Sep 17 00:00:00 2001 From: David Rajaratnam Date: Mon, 21 Oct 2019 21:08:22 +1100 Subject: [PATCH] Incremented to version 0.9.0 --- clorm/__init__.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clorm/__init__.py b/clorm/__init__.py index b90a462..0f63ec1 100644 --- a/clorm/__init__.py +++ b/clorm/__init__.py @@ -1,6 +1,6 @@ from .orm import * -__version__ = '0.9.0-alpha.1' +__version__ = '0.9.0' __author__ = "David Rajaratnam" __email__ = "daver@gemarex.com.au" __copyright__ = "Copyright (c) 2018 David Rajaratnam" diff --git a/docs/conf.py b/docs/conf.py index 4e4d605..e1bd6b7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,9 +24,9 @@ author = 'David Rajaratnam' # The short X.Y version -version = '0.8.0' +version = '0.9.0' # The full version, including alpha/beta/rc tags -release = 'alpha' +#release = 'alpha' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index cfa21a2..f2d0576 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(fname): setup( name="CLORM", - version="0.9.0-alpha.1", + version="0.9.0", author="David Rajaratnam", author_email="daver@gemarex.com.au", description="Clingo ORM (CLORM) provides a ORM interface for interacting with the Clingo Answer Set Programming (ASP) solver",