Skip to content

Commit ca78e9f

Browse files
authored
Release v0.1.dev15 (#619)
* Release v0.1.dev15 * Remove twine as a dev dependency
1 parent 71882b5 commit ca78e9f

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 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.dev15]
810
### Added
911
* Added support for auto-resolving namespaces for keyword from the current namespace using the `::kw` syntax (#576)
1012
* Added support for namespaced map syntax (#577)
@@ -17,6 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1719
* Added support for writing EDN strings from `basilisp.edn` (#600)
1820
* Added a persistent queue data type (#606)
1921
* Added support for transducers (#601)
22+
* Added support for Python 3.9 (#608)
23+
* Added support for 3-way comparators (#609)
2024

2125
### Changed
2226
* Moved `basilisp.lang.runtime.to_seq` to `basilisp.lang.seq` so it can be used within that module and by `basilisp.lang.runtime` without circular import (#588)
@@ -36,6 +40,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3640
### Removed
3741
* Removed `pyfunctional` dependency in favor of Python standard library functions (#589)
3842

43+
### Other
44+
* Basilisp uses `poetry` for dependency and virtual environment management, as well as for publishing to PyPI (#616)
45+
3946
## [v0.1.dev14] - 2020-06-18
4047
### Added
4148
* Added support for `future`s (#441)
@@ -297,6 +304,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
297304
### Added
298305
- Basilisp language and compiler base.
299306

307+
[v0.1.dev15]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev14..v0.1.dev15
300308
[v0.1.dev14]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev13..v0.1.dev14
301309
[v0.1.dev13]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev12..v0.1.dev13
302310
[v0.1.dev12]: https://github.com/chrisrink10/basilisp/compare/v0.1.dev11..v0.1.dev12

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "basilisp"
3-
version = "0.1.dev14"
3+
version = "0.1.dev15"
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)"
@@ -50,7 +50,6 @@ sphinx = "*"
5050
sphinx-rtd-theme = "*"
5151
tox = "*"
5252
tox-pyenv = "*"
53-
twine = "*"
5453

5554
[tool.poetry.extras]
5655
pygments = ["pygments"]

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

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

0 commit comments

Comments
 (0)