Skip to content

Commit

Permalink
0.4.67
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Nov 28, 2023
1 parent cbdd2f6 commit 318b9da
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

[Squint](https://github.com/squint-cljs/squint): ClojureScript syntax to JavaScript compiler

## 0.4.66 (2023-11-29)
## 0.4.67 (2023-11-28)

- Restore backward compatibility with code that is compiled with older versions of squint

## 0.4.66 (2023-11-28)

- Optimize various outputs for smaller size
- Add `js-in`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "squint-cljs",
"type": "module",
"sideEffects": false,
"version": "0.4.66",
"version": "0.4.67",
"files": [
"core.js",
"src/squint/core.js",
Expand Down
1 change: 1 addition & 0 deletions resources/squint/core.edn
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@
subvec
swap_BANG_
system_time
t
take
take_nth
take_while
Expand Down
2 changes: 2 additions & 0 deletions src/squint/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1698,6 +1698,8 @@ export function truth_(x) {
return x != null && x !== false;
}

export const t = truth_ // backward compat, remove in 2025

export function subs(s, start, end) {
return s.substring(start, end);
}
Expand Down

0 comments on commit 318b9da

Please sign in to comment.