Skip to content

Commit 4786b7c

Browse files
authored
Prepare for release v0.2.4 (#1076)
1 parent 827cd9d commit 4786b7c

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
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.2.4]
810
### Added
911
* Added functions to `basilisp.test` for using and combining test fixtures (#980)
1012
* Added the `importing-resolve` function for dynamically importing and resolving a Python name (#1065, #1070)
@@ -604,6 +606,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
604606
### Added
605607
- Basilisp language and compiler base.
606608

609+
[v0.2.4]: https://github.com/basilisp-lang/basilisp/compare/v0.2.3..v0.2.4
607610
[v0.2.3]: https://github.com/basilisp-lang/basilisp/compare/v0.2.2..v0.2.3
608611
[v0.2.2]: https://github.com/basilisp-lang/basilisp/compare/v0.2.1..v0.2.2
609612
[v0.2.1]: https://github.com/basilisp-lang/basilisp/compare/v0.2.0..v0.2.1

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "basilisp"
3-
version = "0.2.3"
3+
version = "0.2.4"
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)"
@@ -218,6 +218,7 @@ disable = [
218218
"too-many-ancestors",
219219
"too-many-public-methods",
220220
"too-many-instance-attributes",
221+
"too-many-positional-arguments",
221222
"trailing-whitespace",
222223
"unnecessary-lambda-assignment",
223224
"unspecified-encoding",

src/basilisp/lang/compiler/analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# pylint: disable=too-many-branches,too-many-lines,too-many-return-statements
1+
# pylint: disable=abstract-class-instantiated,too-many-branches,too-many-lines,too-many-return-statements
22
import builtins
33
import collections
44
import contextlib

src/basilisp/lang/reference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def _validate(self, val: Any, vf: Optional[RefValidator[T]] = None) -> None:
9494
res = False
9595

9696
if not res:
97-
raise ExceptionInfo(
97+
raise ExceptionInfo( # pylint: disable=abstract-class-instantiated
9898
"Invalid reference state",
9999
lmap.map({kw.keyword("data"): val, kw.keyword("validator"): vf}),
100100
)

0 commit comments

Comments
 (0)