From 5e62ef9460b28d7501b9d7ecf8a0ffa565a990ec Mon Sep 17 00:00:00 2001 From: Adam Paquette <acpaquette@usgs.gov> Date: Thu, 23 Jul 2020 12:35:21 -0700 Subject: [PATCH] Version tick for 0.8.4 --- 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 7de4db0..c0408ae 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.3 DESCRIPTION "Abstraction Library for Ephemerides ") +project(ale VERSION 0.8.4 DESCRIPTION "Abstraction Library for Ephemerides ") # include what we need include(GNUInstallDirs) diff --git a/docs/source/conf.py b/docs/source/conf.py index 690bf75..704f492 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.3' +version = '0.8.4' # The full version, including alpha/beta/rc tags -release = '0.8.3' +release = '0.8.4' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 5356707..1255dec 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys from setuptools import setup, find_packages NAME = "Ale" -VERSION = "0.8.3" +VERSION = "0.8.4" # To install the library, run the following # -- GitLab