diff --git a/CHANGELOG.md b/CHANGELOG.md index e109ba5a37dcccabcaf2b341212def848e676a99..27fd21b33bec130aec34865ee637c83282d7b430 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](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] ## +## [0.6.0] - 2021-10-19 ## ### Added ### diff --git a/setup.py b/setup.py index d0e12f1a88f43883ede5e53c90512968ca310e93..03ada739d3babe73b5a2262075f2fb2ec6d808db 100755 --- a/setup.py +++ b/setup.py @@ -46,10 +46,10 @@ from setuptools import find_packages, setup ######################################################################## MAJOR = 0 -MINOR = 5 -MICRO = 3 +MINOR = 6 +MICRO = 0 PRE = "" # e.g. rc0, alpha.1, 0.beta-23 -ISRELEASED = False +ISRELEASED = True if PRE: VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)