Skip to content

Commit f6eba09

Browse files
authored
Release v0.1.dev10 (#385)
1 parent 6bb0f27 commit f6eba09

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,17 @@ 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.dev10] - 2019-05-06
10+
### Added
11+
* Added support for Record data types (#374, #378, and #380)
12+
* Lots more useful core library functions (#373)
13+
814
### Changed
15+
* Refactor core interfaces under `basilisp.lang.interfaces` module (#370)
16+
* Organize interface hierarchy to match Clojure's (#372)
917
* Compile qualified `basilisp.lang.*` module references down to aliased references (#366)
18+
* `let` and `loop` forms may now have empty binding vectors and empty bodies (#382)
1019

1120
## [v0.1.dev9] - 2019-03-29
1221
### Added
@@ -139,6 +148,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
139148
### Added
140149
- Basilisp language and compiler base.
141150

151+
[v0.1.dev10]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev9..v0.1.dev10
142152
[v0.1.dev9]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev8..v0.1.dev9
143153
[v0.1.dev8]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev7..v0.1.dev8
144154
[v0.1.dev7]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev6..v0.1.dev7

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, "dev9")
1+
VERSION = (0, 1, "dev10")
22

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

0 commit comments

Comments
 (0)