Skip to content

Commit

Permalink
Release v0.1.0a1
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrink10 committed Jul 7, 2021
1 parent 6e3f1fd commit 72b2b23
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v0.1.0a1]
### Added
* Added a bootstrapping function for easily bootstrapping Basilisp projects from Python (#620)
* Added support for watchers and validator functions on Atoms and Vars (#627)
Expand Down Expand Up @@ -332,6 +334,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Basilisp language and compiler base.

[v0.1.0a1]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev15..v0.1.0a1
[v0.1.dev15]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev14..v0.1.dev15
[v0.1.dev14]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev13..v0.1.dev14
[v0.1.dev13]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev12..v0.1.dev13
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "basilisp"
version = "0.1.dev15"
version = "0.1.0a1"
description = "A Clojure-like lisp written for Python"
authors = ["Christopher Rink <chrisrink10@gmail.com>"]
license = "Eclipse Public License 1.0 (EPL-1.0)"
Expand Down
2 changes: 1 addition & 1 deletion src/basilisp/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 1, "dev15")
VERSION = (0, 1, "0a1")

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

0 comments on commit 72b2b23

Please sign in to comment.