diff --git a/CHANGELOG.md b/CHANGELOG.md index 1481dc0c..ed1bb22c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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). ## [Unreleased] + +## [v0.2.0] ### Added * Added the `CollReduce` and `KVReduce` protocols in `basilisp.core.protocols` and implemented `reduce` in terms of those protocols (#927) * Added support for custom data readers (#924) @@ -548,6 +550,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Basilisp language and compiler base. +[v0.2.0]: https://github.com/basilisp-lang/basilisp/compare/v0.1.1..v0.2.0 [v0.1.1]: https://github.com/basilisp-lang/basilisp/compare/v0.1.0..v0.1.1 [v0.1.0]: https://github.com/basilisp-lang/basilisp/compare/v0.1.0b2..v0.1.0 [v0.1.0b2]: https://github.com/basilisp-lang/basilisp/compare/v0.1.0b1..v0.1.0b2 diff --git a/pyproject.toml b/pyproject.toml index 101f34c3..ebdd56e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "basilisp" -version = "0.1.1" +version = "0.2.0" description = "A Clojure-like lisp written for Python" authors = ["Christopher Rink "] license = "Eclipse Public License 1.0 (EPL-1.0)"