Skip to content

Commit

Permalink
Release 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ywkim312 committed Feb 2, 2024
1 parent 957bb00 commit 6a62e12
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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]
## [0.6.2] - 2024-02-07

### Fixed
- Sphinx documentation build error. [#72](https://github.com/IN-CORE/pyincore-data/issues/72)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# The short X.Y version
version = '0.6'
# The full version, including alpha/beta/rc tags
release = '0.6.1'
release = '0.6.2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyincore_data/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import logging
from logging import config as logging_config

PACKAGE_VERSION = "0.6.1"
PACKAGE_VERSION = "0.6.2"

PYINCORE_DATA_ROOT_FOLDER = os.path.dirname(os.path.dirname(__file__))

Expand Down
2 changes: 1 addition & 1 deletion recipes/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pyincore-data" %}
{% set version = "0.6.1" %}
{% set version = "0.6.2" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from setuptools import setup, find_packages

# version number of pyincore-data
version = '0.6.1'
version = '0.6.2'

with open("README.rst", encoding="utf-8") as f:
readme = f.read()
Expand Down

0 comments on commit 6a62e12

Please sign in to comment.