Skip to content

Commit 4d737a6

Browse files
authored
Release v0.1.0a1 (#653)
1 parent 6e3f1fd commit 4d737a6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

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.1.0a1]
810
### Added
911
* Added a bootstrapping function for easily bootstrapping Basilisp projects from Python (#620)
1012
* Added support for watchers and validator functions on Atoms and Vars (#627)
@@ -332,6 +334,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
332334
### Added
333335
- Basilisp language and compiler base.
334336

337+
[v0.1.0a1]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev15..v0.1.0a1
335338
[v0.1.dev15]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev14..v0.1.dev15
336339
[v0.1.dev14]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev13..v0.1.dev14
337340
[v0.1.dev13]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev12..v0.1.dev13

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "basilisp"
3-
version = "0.1.dev15"
3+
version = "0.1.0a1"
44
description = "A Clojure-like lisp written for Python"
55
authors = ["Christopher Rink <chrisrink10@gmail.com>"]
66
license = "Eclipse Public License 1.0 (EPL-1.0)"

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

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

0 commit comments

Comments
 (0)