You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
7
## [Unreleased]
8
+
9
+
## [v0.1.dev14] - 2020-06-18
8
10
### Added
9
11
* Added support for `future`s (#441)
10
12
* 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
24
26
* Basilisp set and map types are now backed by the HAMT provided by `immutables` (#557)
25
27
*`get` now responds `nil` (or its default) for any unsupported types (#570)
26
28
*`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)
27
32
28
33
### Fixed
29
34
* 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
0 commit comments