diff --git a/CHANGELOG.md b/CHANGELOG.md index 942ef7146..517bcedc7 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.3] ### Added * Added a compiler metadata flag for suppressing warnings when Var indirection is unavoidable (#1052) * Added the `--emit-generated-python` CLI argument to control whether generated Python code strings are stored by the runtime for each compiled namespace (#1045) @@ -590,6 +592,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Basilisp language and compiler base. +[v0.2.3]: https://github.com/basilisp-lang/basilisp/compare/v0.2.2..v0.2.3 [v0.2.2]: https://github.com/basilisp-lang/basilisp/compare/v0.2.1..v0.2.2 [v0.2.1]: https://github.com/basilisp-lang/basilisp/compare/v0.2.0..v0.2.1 [v0.2.0]: https://github.com/basilisp-lang/basilisp/compare/v0.1.1..v0.2.0 diff --git a/pyproject.toml b/pyproject.toml index 8301fe4a6..318be607b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "basilisp" -version = "0.2.2" +version = "0.2.3" description = "A Clojure-like lisp written for Python" authors = ["Christopher Rink "] license = "Eclipse Public License 1.0 (EPL-1.0)"