From 6928a7584944a82463c5dbd4727fc7fd53d21d42 Mon Sep 17 00:00:00 2001 From: Chen Wang Date: Wed, 12 Feb 2025 10:33:31 -0600 Subject: [PATCH] release 1.21.0 --- CHANGELOG.md | 2 +- docs/source/conf.py | 4 ++-- pyincore/globals.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f194ce6d..461748cb 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.21.0] - 2025-02-12 ### Changed - Enable internal network names for each service [#638](https://github.com/IN-CORE/pyincore/issues/638) diff --git a/docs/source/conf.py b/docs/source/conf.py index 50ae0762..1d85f679 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -33,9 +33,9 @@ author = "" # The short X.Y version -version = "1.20" +version = "1.21" # The full version, including alpha/beta/rc tags -release = "1.20.1" +release = "1.21.0" # -- General configuration --------------------------------------------------- diff --git a/pyincore/globals.py b/pyincore/globals.py index c5967202..726641f4 100644 --- a/pyincore/globals.py +++ b/pyincore/globals.py @@ -10,7 +10,7 @@ import os import shutil -PACKAGE_VERSION = "1.20.1" +PACKAGE_VERSION = "1.21.0" INCORE_API_PROD_URL = "https://tools.in-core.org" INCORE_API_DEV_URL = "https://dev.in-core.org" diff --git a/setup.py b/setup.py index 009329f6..28fdd031 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages # version number of pyincore -version = "1.20.1" +version = "1.21.0" with open("README.rst", encoding="utf-8") as f: readme = f.read()