From 77da8a8b2a9bb4d588eb0b044da64fb21f4f28a1 Mon Sep 17 00:00:00 2001 From: YONG WOOK KIM Date: Wed, 6 Dec 2023 15:59:27 -0600 Subject: [PATCH] release 1.9.0 --- CHANGELOG.md | 2 +- docs/source/conf.py | 4 ++-- pyincore_viz/globals.py | 2 +- recipes/meta.yaml | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7107d1..7120217 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [1.9.0] - 2023-12-13 ### Added - Local hazard visualization [#143](https://github.com/IN-CORE/pyincore-viz/issues/143) diff --git a/docs/source/conf.py b/docs/source/conf.py index 43ad713..c84089f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -31,9 +31,9 @@ author = 'Yong Wook Kim' # The short X.Y version -version = '1.8' +version = '1.9' # The full version, including alpha/beta/rc tags -release = '1.8.4' +release = '1.9.0' # -- General configuration --------------------------------------------------- diff --git a/pyincore_viz/globals.py b/pyincore_viz/globals.py index aa8270c..b2d2714 100644 --- a/pyincore_viz/globals.py +++ b/pyincore_viz/globals.py @@ -8,7 +8,7 @@ import logging from logging import config as logging_config -PACKAGE_VERSION = "1.8.4" +PACKAGE_VERSION = "1.9.0" INCORE_GEOSERVER_WMS_URL = "https://incore.ncsa.illinois.edu/geoserver/incore/wms" INCORE_GEOSERVER_DEV_WMS_URL = "https://incore-dev.ncsa.illinois.edu/geoserver/incore/wms" diff --git a/recipes/meta.yaml b/recipes/meta.yaml index 0da1e18..3dc4698 100644 --- a/recipes/meta.yaml +++ b/recipes/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyincore-viz" %} -{% set version = "1.8.4" %} +{% set version = "1.9.0" %} package: name: {{ name|lower }} diff --git a/setup.py b/setup.py index 1ad1233..9d74b55 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages # version number of pyincore -version = '1.8.4' +version = '1.9.0' with open("README.rst", encoding="utf-8") as f: readme = f.read()