Skip to content

Commit fdecebf

Browse files
authored
Prepare for release v0.5.0 (#1320)
1 parent 5b2ee13 commit fdecebf

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [v0.5.0]
810
### Added
911
* Added support for Python 3.14 (#1282)
1012
* Added support for Unicode escape sequences in string literals (#1295)
@@ -775,6 +777,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
775777
### Added
776778
- Basilisp language and compiler base.
777779

780+
[v0.5.0]: https://github.com/basilisp-lang/basilisp/compare/v0.4.0..v0.5.0
778781
[v0.4.0]: https://github.com/basilisp-lang/basilisp/compare/v0.3.8..v0.4.0
779782
[v0.3.8]: https://github.com/basilisp-lang/basilisp/compare/v0.3.7..v0.3.8
780783
[v0.3.7]: https://github.com/basilisp-lang/basilisp/compare/v0.3.6..v0.3.7

docs/pyinterop.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ Arithmetic
465465
.. lpy:currentns:: basilisp.core
466466
467467
Basilisp's arithmetic functions follow Clojure's conventions allowing frictionless interoperability between all supported numeric types.
468-
Python's :external:py:class:`decimal.Decimal` type (which backs Basilisp's equivalent to Clojure's ``BigDecimal``) does not support arithmetic operations between ``Decimal`` instances and Python ``float``s, but Basilisp does allow this (downcasting the result to a ``float`` as in Clojure).
468+
Python's :external:py:class:`decimal.Decimal` type (which backs Basilisp's equivalent to Clojure's ``BigDecimal``) does not support arithmetic operations between ``Decimal`` instances and Python ``float``\s, but Basilisp does allow this (downcasting the result to a ``float`` as in Clojure).
469469

470470
.. note::
471471

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "basilisp"
3-
version = "0.5.0.dev2"
3+
version = "0.5.0"
44
description = "A Clojure-like lisp written for Python"
55
authors = [
66
{ name = "Christopher Rink", email = "chris@crink.dev" },

0 commit comments

Comments
 (0)