Skip to content

Commit 65b1b05

Browse files
authored
version 1.1.1 release (#1270)
1 parent 95df479 commit 65b1b05

2 files changed

Lines changed: 13 additions & 24 deletions

File tree

changelog.md

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,26 @@
1-
### Japanese translation ([#1243](https://github.com/scalacenter/scastie/pull/1243))
1+
### Scala-CLI runners status ([#1221](https://github.com/scalacenter/scastie/pull/1221))
22

3-
Scastie now supports Japanese as a UI language. Thanks to [@windymelt](https://github.com/windymelt) for this contribution!
3+
Scala-CLI runners now report their status alongside SBT runners, with real-time execution indicators and a task queue visible to all users.
44

5-
---
5+
### Faster Scala-CLI execution ([#1258](https://github.com/scalacenter/scastie/pull/1258))
66

7-
### Actionable diagnostics ([#1238](https://github.com/scalacenter/scastie/pull/1238))
7+
Scala-CLI runner now skips unnecessary reloads when directives haven't changed between runs, significantly reducing code execution time.
88

9-
Scastie now supports actionable diagnostics — click on suggested fixes to apply them directly to your code.
9+
### Multi-line error diagnostics ([#1227](https://github.com/scalacenter/scastie/pull/1227))
1010

11-
![Actionable diagnostics demo](https://github.com/user-attachments/assets/d9a896eb-123c-45d9-be5a-5795245c62ff)
11+
Error diagnostics now support multi-line spans, allowing the editor to accurately highlight errors that cover more than one line.
1212

1313
---
1414

15-
### Better build error reporting ([#1235](https://github.com/scalacenter/scastie/pull/1235))
16-
17-
All BSP log messages are now captured and forwarded to the console, so you can see full output. This enables using flags like `-Vprint` to inspect intermediate compilation phases.
15+
### Improvements
1816

19-
![Vprint flag demo](https://github.com/user-attachments/assets/79eb7491-715e-475c-8358-e12f746221c0)
20-
21-
---
17+
- Enable capture checking syntax support in worksheet mode ([#1268](https://github.com/scalacenter/scastie/pull/1268))
2218

2319
### Bug Fixes
24-
- Fix signature help spam by caching active parameter ([#1220](https://github.com/scalacenter/scastie/pull/1220))
25-
- Fix libraries not loading in Build Settings ([#1240](https://github.com/scalacenter/scastie/pull/1240))
26-
- Fix download button ([#1231](https://github.com/scalacenter/scastie/pull/1231))
27-
- Fix nightly version resolution ([#1245](https://github.com/scalacenter/scastie/pull/1245))
28-
- Prevent duplicate snippet URLs when saving without changes ([#1242](https://github.com/scalacenter/scastie/pull/1242))
29-
- Prevent stale diagnostics after version change ([#1247](https://github.com/scalacenter/scastie/pull/1247))
30-
- Fix language in embed mode ([#1233](https://github.com/scalacenter/scastie/pull/1233))
3120

32-
### Improvements
33-
- Per-user presentation compiler caching ([#1224](https://github.com/scalacenter/scastie/pull/1224))
34-
- Consistent warning display with compilation info cache ([#1169](https://github.com/scalacenter/scastie/pull/1169))
21+
- Fix autocompletion condition bug ([#1257](https://github.com/scalacenter/scastie/pull/1257))
22+
- Fix worksheet mode propagation in Scala-CLI runner ([#1269](https://github.com/scalacenter/scastie/pull/1269))
3523

3624
### Version Bumps
37-
- Scala 3.8.2-RC3 ([#1253](https://github.com/scalacenter/scastie/pull/1253))
25+
26+
- Scala 3.8.2 ([#1262](https://github.com/scalacenter/scastie/pull/1262))

project/SbtShared.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ object SbtShared {
7171
val gitHashNow = gitHash()
7272
val gitIsDirtyNow = gitIsDirty()
7373

74-
val versionBase = "1.1.0"
74+
val versionBase = "1.1.1"
7575

7676
val versionNow = {
7777
if (gitIsDirtyNow) versionBase + "-SNAPSHOT"

0 commit comments

Comments
 (0)