Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
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.5.1]
### Added
* Added `basilisp.csv` namespace (#753)
* Added `basilisp.reflect` namespace for Python VM runtime reflection (#837)
Expand Down Expand Up @@ -787,6 +787,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Basilisp language and compiler base.

[Unreleased]: https://github.com/basilisp-lang/basilisp/compare/v0.5.0..HEAD
[v0.5.0]: https://github.com/basilisp-lang/basilisp/compare/v0.5.0..v0.5.1
[v0.5.0]: https://github.com/basilisp-lang/basilisp/compare/v0.4.0..v0.5.0
[v0.4.0]: https://github.com/basilisp-lang/basilisp/compare/v0.3.8..v0.4.0
[v0.3.8]: https://github.com/basilisp-lang/basilisp/compare/v0.3.7..v0.3.8
Expand Down
8 changes: 8 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ Contents
releasenotes
contributing

.. toctree::
:caption: Meta
:maxdepth: 1

PyPI <https://pypi.org/project/basilisp/>
GitHub <https://github.com/basilisp-lang/basilisp>
Clojurians <https://clojurians.slack.com/archives/C071RFV2Z1D>

Indices and tables
==================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "basilisp"
version = "0.5.0"
version = "0.5.1"
description = "A Clojure-compatible(-ish) Lisp dialect hosted on Python 3 with seamless Python interop."
authors = [
{ name = "Christopher Rink", email = "chris@crink.dev" },
Expand Down
2 changes: 1 addition & 1 deletion src/basilisp/lang/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1797,7 +1797,7 @@ def _read_next_consuming_comment(ctx: ReaderContext) -> RawReaderForm:
while True:
v = _read_next(ctx)
if v is ctx.eof:
return ctx.eof
return cast(RawReaderForm, ctx.eof)
if v is COMMENT or isinstance(v, Comment):
continue
return v
Expand Down
2 changes: 1 addition & 1 deletion src/basilisp/lang/set.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def from_iterable(
) -> "PersistentSet":
return PersistentSet(_Map((m, m) for m in (members or ())), meta=meta)

_from_iterable = from_iterable
_from_iterable = from_iterable # type: ignore[assignment]

def __bool__(self):
return True
Expand Down
Loading