From 0da97b1d0c3a25d28503248d6ff888f4cdbb439d Mon Sep 17 00:00:00 2001 From: Yong Wook Kim Date: Mon, 12 Sep 2022 13:30:51 -0500 Subject: [PATCH] created release --- CHANGELOG.md | 2 +- docs/source/conf.py | 4 ++-- pyincore_viz/globals.py | 2 +- recipes/meta.yaml | 4 ++-- setup.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a02cb31..d9c1867 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.8.0] - 2022-09-14 ### Added - Missing docstrings in GeoUtil. [#82](https://github.com/IN-CORE/pyincore-viz/issues/82) diff --git a/docs/source/conf.py b/docs/source/conf.py index 47e6e4b..5c2f982 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.7' +version = '1.8' # The full version, including alpha/beta/rc tags -release = '1.7.0' +release = '1.8.0' # -- General configuration --------------------------------------------------- diff --git a/pyincore_viz/globals.py b/pyincore_viz/globals.py index 685999f..425a26c 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.7.0" +PACKAGE_VERSION = "1.8.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 df2c749..3b9dd21 100644 --- a/recipes/meta.yaml +++ b/recipes/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyincore-viz" %} -{% set version = "1.7.0" %} +{% set version = "1.8.0" %} package: name: {{ name|lower }} @@ -47,7 +47,7 @@ requirements: - owslib>=0.17.1 - pandas>=0.24.1 - pillow - - pyincore>=1.5.0 + - pyincore>=1.6.0 - rasterio>=1.1.3 test: diff --git a/setup.py b/setup.py index 79758f2..4b28719 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages # version number of pyincore -version = '1.7.0' +version = '1.8.0' with open("README.rst", encoding="utf-8") as f: readme = f.read()