From 47a41fc6a04bc21eee0f0c68db924e5672a2a652 Mon Sep 17 00:00:00 2001 From: Chen Wang Date: Thu, 31 Oct 2024 14:03:27 -0500 Subject: [PATCH] release 1.20.1 --- CHANGELOG.md | 2 +- docs/source/conf.py | 2 +- pyincore/globals.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4209425..031bafae 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.20.1] - 2024-11-01 ### Fixed - CoreCGEML bug and updated base values [#627](https://github.com/IN-CORE/pyincore/issues/627) diff --git a/docs/source/conf.py b/docs/source/conf.py index 3ab1ad3a..50ae0762 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -35,7 +35,7 @@ # The short X.Y version version = "1.20" # The full version, including alpha/beta/rc tags -release = "1.20.0" +release = "1.20.1" # -- General configuration --------------------------------------------------- diff --git a/pyincore/globals.py b/pyincore/globals.py index dc633501..426618f1 100644 --- a/pyincore/globals.py +++ b/pyincore/globals.py @@ -10,7 +10,7 @@ import os import shutil -PACKAGE_VERSION = "1.20.0" +PACKAGE_VERSION = "1.20.1" INCORE_API_PROD_URL = "https://incore.ncsa.illinois.edu" INCORE_API_DEV_URL = "https://incore-dev.ncsa.illinois.edu" diff --git a/setup.py b/setup.py index 145e2e5a..705de3dc 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages # version number of pyincore -version = "1.20.0" +version = "1.20.1" with open("README.rst", encoding="utf-8") as f: readme = f.read()