diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d211b7e2ad48363cc414f2bd02263bc30c209e5..c036a4b50930c222ad66d2f14a71fde663798c5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ 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] ## + +### Added ### + +### Changed ### + +### Deprecated ### + +### Removed ### + +### Fixed ### + +### Security ### + ## [0.6.1] - 2021-12-03 ## ### Fixed ### diff --git a/setup.py b/setup.py index 0eda58e813bb88e3d63b8ad064db362069328dd1..b2a89cfe8dc26de874585cdd46c06e458d3533e9 100755 --- a/setup.py +++ b/setup.py @@ -47,9 +47,9 @@ from setuptools import find_packages, setup MAJOR = 0 MINOR = 6 -MICRO = 1 +MICRO = 2 PRE = "" # e.g. rc0, alpha.1, 0.beta-23 -ISRELEASED = True +ISRELEASED = False if PRE: VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)