diff --git a/CHANGELOG.md b/CHANGELOG.md index 4678691..f66e43b 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.11.0] - 2024-10-23 ### Added - Apply Black formatter [#169](https://github.com/IN-CORE/pyincore-viz/issues/169) diff --git a/docs/source/conf.py b/docs/source/conf.py index 4486c83..9866288 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.10" +version = "1.11" # The full version, including alpha/beta/rc tags -release = "1.10.1" +release = "1.11.0" # -- General configuration --------------------------------------------------- diff --git a/recipes/meta.yaml b/recipes/meta.yaml index fd66442..b6175c5 100644 --- a/recipes/meta.yaml +++ b/recipes/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyincore-viz" %} -{% set version = "1.10.1" %} +{% set version = "1.11.0" %} package: name: {{ name|lower }} diff --git a/setup.py b/setup.py index 5606829..fbde009 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages # version number of pyincore -version = "1.10.1" +version = "1.11.0" with open("README.rst", encoding="utf-8") as f: readme = f.read()