Skip to content

Commit 2e37ca3

Browse files
authored
Prepare for release v0.3.6 (#1203)
1 parent 50b9c45 commit 2e37ca3

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-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.3.6]
810
### Added
911
* Added support for the `:decorators` meta key in anonymous `fn`s (#1178)
1012

@@ -691,6 +693,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
691693
### Added
692694
- Basilisp language and compiler base.
693695

696+
[v0.3.6]: https://github.com/basilisp-lang/basilisp/compare/v0.3.5..v0.3.6
694697
[v0.3.5]: https://github.com/basilisp-lang/basilisp/compare/v0.3.4..v0.3.5
695698
[v0.3.4]: https://github.com/basilisp-lang/basilisp/compare/v0.3.3..v0.3.4
696699
[v0.3.3]: https://github.com/basilisp-lang/basilisp/compare/v0.3.2..v0.3.3

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.3.5"
3+
version = "0.3.6"
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/importer.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ class ImporterCacheEntry(TypedDict, total=False):
132132
module: BasilispModule
133133

134134

135-
class BasilispImporter(MetaPathFinder, SourceLoader): # pylint: disable=abstract-method
135+
class BasilispImporter( # type: ignore[misc] # pylint: disable=abstract-method
136+
MetaPathFinder, SourceLoader
137+
):
136138
"""Python import hook to allow directly loading Basilisp code within
137139
Python."""
138140

0 commit comments

Comments
 (0)