Skip to content

Commit e76e5a1

Browse files
authored
Release v0.1.dev14 (#571)
1 parent bb76fa5 commit e76e5a1

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 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.1.dev14] - 2020-06-18
810
### Added
911
* Added support for `future`s (#441)
1012
* Added support for calling Python functions and methods with keyword arguments (#531)
@@ -24,6 +26,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2426
* Basilisp set and map types are now backed by the HAMT provided by `immutables` (#557)
2527
* `get` now responds `nil` (or its default) for any unsupported types (#570)
2628
* `nth` now supports only sequential collections (or `nil`) and will throw an exception for any invalid types (#570)
29+
* Use `functools.singledispatch` for to achieve higher performance polymorphism on most runtime functions (#552, #559)
30+
* Update the keyword cache to use a Python `threading.Lock` rather than an Atom (#552)
31+
* `rest` no longer returns `nil`, it always returns an empty sequence (#558)
2732

2833
### Fixed
2934
* Fixed a bug where the Basilisp AST nodes for return values of `deftype` members could be marked as _statements_ rather than _expressions_, resulting in an incorrect `nil` return (#523)
@@ -262,6 +267,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
262267
### Added
263268
- Basilisp language and compiler base.
264269

270+
[v0.1.dev14]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev13..v0.1.dev14
265271
[v0.1.dev13]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev12..v0.1.dev13
266272
[v0.1.dev12]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev11..v0.1.dev12
267273
[v0.1.dev11]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev10..v0.1.dev11

src/basilisp/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (0, 1, "dev13")
1+
VERSION = (0, 1, "dev14")
22

33
__version__ = ".".join(map(str, VERSION))

0 commit comments

Comments
 (0)