From c45ed7204c596a82706d508ab493dec22eb6cf80 Mon Sep 17 00:00:00 2001 From: Jesse Mapel <jmapel@usgs.gov> Date: Wed, 15 Jul 2020 09:35:39 -0700 Subject: [PATCH] Ticked to 0.8.3 --- CMakeLists.txt | 2 +- docs/source/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b80065..7de4db0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ # Specify the required version of CMake. # cmake 3.15 required for findPython virtualenv configuration cmake_minimum_required(VERSION 3.15) -project(ale VERSION 0.8.2 DESCRIPTION "Abstraction Library for Ephemerides ") +project(ale VERSION 0.8.3 DESCRIPTION "Abstraction Library for Ephemerides ") # include what we need include(GNUInstallDirs) diff --git a/docs/source/conf.py b/docs/source/conf.py index 166c97c..690bf75 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,9 +26,9 @@ copyright = 'Public Domain' author = 'USGS, Astrogeology Science Center' # The short X.Y.Z version -version = '0.8.2' +version = '0.8.3' # The full version, including alpha/beta/rc tags -release = '0.8.2' +release = '0.8.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 5b1c1ee..5356707 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys from setuptools import setup, find_packages NAME = "Ale" -VERSION = "0.8.2" +VERSION = "0.8.3" # To install the library, run the following # -- GitLab