Skip to content

Commit 2376e4c

Browse files
authored
Bump version to 0.1.0a2 (#697)
1 parent 83465f6 commit 2376e4c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 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.0a2]
810
### Added
911
* Added support for fixtures in `basilisp.test` (#654)
1012
* Added support for Python 3.10 and 3.11 (#659, #693)
@@ -25,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2527
### Other
2628
* Run CPython CI checks on Github Actions rather than CircleCI (#683)
2729
* Remove support for Python 3.6 and 3.7, which are both EOL (#691)
30+
* Fix test suite failures on Windows and add Github Actions runners for testing on Windows (#688)
2831
* Update Prospector version for linting (#694)
2932

3033
## [v0.1.0a1]
@@ -355,6 +358,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
355358
### Added
356359
- Basilisp language and compiler base.
357360

361+
[v0.1.0a2]: https://github.com/chrisrink10/basilisp/compare/v0.1.0a1..v0.1.0a2
358362
[v0.1.0a1]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev15..v0.1.0a1
359363
[v0.1.dev15]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev14..v0.1.dev15
360364
[v0.1.dev14]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev13..v0.1.dev14

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.0a1"
3+
version = "0.1.0a2"
44
description = "A Clojure-like lisp written for Python"
55
authors = ["Christopher Rink <[email protected]>"]
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, "0a1")
1+
VERSION = (0, 1, "0a2")
22

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

0 commit comments

Comments
 (0)