From 1f3de8d95bcdb3784a43549dd07ea8fe22f226f8 Mon Sep 17 00:00:00 2001 From: Chris Rink Date: Fri, 21 Feb 2025 08:08:13 -0500 Subject: [PATCH] Prepare for release v0.3.7 --- CHANGELOG.md | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17dec7aa..1758b059 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.3.7] ### Fixed * Fix a regression introduced in #1176 where the testrunner couldn't handle relative paths in `sys.path`, causing `basilisp test` to fail when no arugments were provided (#1204) * Fix a bug where `basilisp.process/exec` could deadlock reading process output if that output exceeded the buffer size (#1202) @@ -697,6 +699,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Basilisp language and compiler base. +[v0.3.6]: https://github.com/basilisp-lang/basilisp/compare/v0.3.6..v0.3.7 [v0.3.6]: https://github.com/basilisp-lang/basilisp/compare/v0.3.5..v0.3.6 [v0.3.5]: https://github.com/basilisp-lang/basilisp/compare/v0.3.4..v0.3.5 [v0.3.4]: https://github.com/basilisp-lang/basilisp/compare/v0.3.3..v0.3.4 diff --git a/pyproject.toml b/pyproject.toml index 8cc681d2..f704ec1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "basilisp" -version = "0.3.6" +version = "0.3.7" description = "A Clojure-like lisp written for Python" authors = ["Christopher Rink "] license = "Eclipse Public License 1.0 (EPL-1.0)"