diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 35e9d4e..15abb2e 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,6 +4,12 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.2] - 2021-01-25 +### Added +- Savitzky–Golay filtering for curve fitting and plotting +### Fixed +- Removed leftover debugging message + ## [0.6.0] - 2021-01-24 ### Added - An `align` subpackage containing image alignment functionality diff --git a/setup.py b/setup.py index c7c482c..469a23f 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read(*names, **kwargs): setup( python_requires = ">=3.7", name = "colonyscanalyser", - version = "0.6.1", + version = "0.6.2", description = "An image analysis tool for measuring microorganism colony growth", long_description = long_description, long_description_content_type = "text/markdown",