diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d642a7..1601e31 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.10.1] - 2023-06-12 ### Added - Google Analytics to the documentation site [#164](https://github.com/IN-CORE/pyincore-viz/issues/164) diff --git a/docs/source/conf.py b/docs/source/conf.py index d28e67a..25a3452 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -33,7 +33,7 @@ # The short X.Y version version = '1.10' # The full version, including alpha/beta/rc tags -release = '1.10.0' +release = '1.10.1' # -- General configuration --------------------------------------------------- diff --git a/recipes/meta.yaml b/recipes/meta.yaml index dcc8574..0a7953c 100644 --- a/recipes/meta.yaml +++ b/recipes/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyincore-viz" %} -{% set version = "1.10.0" %} +{% set version = "1.10.1" %} package: name: {{ name|lower }} diff --git a/setup.py b/setup.py index 4a613b7..2722b3e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages # version number of pyincore -version = '1.10.0' +version = '1.10.1' with open("README.rst", encoding="utf-8") as f: readme = f.read()