Skip to content

Commit 6ec4065

Browse files
authored
Add release notes for v1.8.2 (#3741)
1 parent d48c691 commit 6ec4065

File tree

1 file changed

+50
-1
lines changed

1 file changed

+50
-1
lines changed

website/docs/release_notes.md

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,55 @@ import ReactPlayer from 'react-player'
88

99
# Release notes
1010

11+
## [v1.8.2](https://github.com/VirtusLab/scala-cli/releases/tag/v1.8.2)
12+
13+
### Support for Scala Native 0.5.8
14+
This Scala CLI version switches the default Scala Native version to 0.5.8.
15+
16+
```bash
17+
scala-cli -e 'println("Hello from Scala Native 0.5.8!")' --native
18+
# Compiling project (Scala 3.7.1, Scala Native 0.5.8)
19+
# Compiled project (Scala 3.7.1, Scala Native 0.5.8)
20+
# [info] Linking (multithreadingEnabled=true, disable if not used) (1052 ms)
21+
# [info] Discovered 919 classes and 5640 methods after classloading
22+
# [info] Checking intermediate code (quick) (59 ms)
23+
# [info] Multithreading was not explicitly enabled - initial class loading has not detected any usage of system threads. Multithreading support will be disabled to improve performance.
24+
# [info] Linking (multithreadingEnabled=false) (369 ms)
25+
# [info] Discovered 511 classes and 2553 methods after classloading
26+
# [info] Checking intermediate code (quick) (7 ms)
27+
# [info] Discovered 491 classes and 1986 methods after optimization
28+
# [info] Optimizing (debug mode) (519 ms)
29+
# [info] Produced 9 LLVM IR files
30+
# [info] Generating intermediate code (521 ms)
31+
# [info] Compiling to native code (1762 ms)
32+
# [info] Linking with [pthread, dl, m]
33+
# [info] Linking native code (immix gc, none lto) (98 ms)
34+
# [info] Postprocessing (0 ms)
35+
# [info] Total (4379 ms)
36+
# Hello from Scala Native 0.5.8!
37+
```
38+
39+
Added in [#3728](https://github.com/VirtusLab/scala-cli/pull/3728)
40+
41+
### Internal and build changes
42+
* Migrate publishing to Sonatype Maven Central by [@Gedochao](https://github.com/Gedochao) in [#3704](https://github.com/VirtusLab/scala-cli/pull/3704)
43+
* Fix version string of published artifacts by [@Gedochao](https://github.com/Gedochao) in [#3721](https://github.com/VirtusLab/scala-cli/pull/3721)
44+
45+
### Updates
46+
* Update scala-cli.sh launcher for 1.8.1 by [@github-actions](https://github.com/github-actions) in [#3719](https://github.com/VirtusLab/scala-cli/pull/3719)
47+
* Bump `sbt` to 1.11.1 by [@Gedochao](https://github.com/Gedochao) in [#3723](https://github.com/VirtusLab/scala-cli/pull/3723)
48+
* Bump deps to versions migrated to Sonatype Maven Central by [@Gedochao](https://github.com/Gedochao) in [#3722](https://github.com/VirtusLab/scala-cli/pull/3722)
49+
* Update publish_2.13 to 0.2.1 by [@scala-steward](https://github.com/scala-steward) in [#3727](https://github.com/VirtusLab/scala-cli/pull/3727)
50+
* Bump sass from 1.89.1 to 1.89.2 in /website by [@dependabot](https://github.com/dependabot) in [#3733](https://github.com/VirtusLab/scala-cli/pull/3733)
51+
* Bump @easyops-cn/docusaurus-search-local from 0.49.2 to 0.50.0 in /website by [@dependabot](https://github.com/dependabot) in [#3730](https://github.com/VirtusLab/scala-cli/pull/3730)
52+
* Bump react and react-dom in /website by [@dependabot](https://github.com/dependabot) in [#3732](https://github.com/VirtusLab/scala-cli/pull/3732)
53+
* Bump `scala-cli-signing` to 0.2.9 & coursier `publish` to 0.3.0 by [@Gedochao](https://github.com/Gedochao) in [#3734](https://github.com/VirtusLab/scala-cli/pull/3734)
54+
* Bump `docusaurus` to 3.8.1 by [@Gedochao](https://github.com/Gedochao) in [#3737](https://github.com/VirtusLab/scala-cli/pull/3737)
55+
* Bump SBT to 1.11.2 by [@Gedochao](https://github.com/Gedochao) in [#3739](https://github.com/VirtusLab/scala-cli/pull/3739)
56+
* Update Scala Native to 0.5.8 by [@scala-steward](https://github.com/scala-steward) in [#3728](https://github.com/VirtusLab/scala-cli/pull/3728)
57+
58+
**Full Changelog**: https://github.com/VirtusLab/scala-cli/compare/v1.8.1...v1.8.2
59+
1160
## [v1.8.1](https://github.com/VirtusLab/scala-cli/releases/tag/v1.8.1)
1261

1362
### Support for Scala 3.7.1
@@ -31,7 +80,7 @@ It is now possible to use URLs in `using file` directives, which allows linking
3180
Added during a [Scala Tooling Spree](https://scalameta.org/scala-tooling-spree/) by [@ivan-klass](https://github.com/ivan-klass), [@majk-p](https://github.com/majk-p) and [@tgodzik](https://github.com/tgodzik) in [#3681](https://github.com/VirtusLab/scala-cli/pull/3681)
3281

3382
### Features
34-
* Support links in using file directive (implements #1328) by @ivan-klass, @majk-p and @tgodzik in [#3681](https://github.com/VirtusLab/scala-cli/pull/3681)
83+
* Support links in using file directive (implements #1328) by [@ivan-klass](https://github.com/ivan-klass), [@majk-p](https://github.com/majk-p) and [@tgodzik](https://github.com/tgodzik) in [#3681](https://github.com/VirtusLab/scala-cli/pull/3681)
3584

3685
### Fixes
3786
* Fix race condition in local repo setup by [@unlsycn](https://github.com/unlsycn) in [#3693](https://github.com/VirtusLab/scala-cli/pull/3693)

0 commit comments

Comments
 (0)