Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ammonite to 3.0.0-M2-1-3763a1d4 #2905

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/deps.sc
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ object Deps {
// DO NOT hardcode a Scala version in this dependency string
// This dependency is used to ensure that Ammonite is available for Scala versions
// that Scala CLI supports.
def ammonite = ivy"com.lihaoyi:::ammonite:3.0.0-M1-24-26133e66"
def ammonite = ivy"com.lihaoyi:::ammonite:3.0.0-M2-1-3763a1d4"
def asm = ivy"org.ow2.asm:asm:9.7"
// Force using of 2.13 - is there a better way?
def bloopConfig = ivy"ch.epfl.scala:bloop-config_2.13:2.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ We can fix that by either running with a `—-native` option, or,
in this case, by including an additional using directive:

```scala compile title=size-higher-than.scala
//> using scala 3
//> using dep com.lihaoyi::os-lib::0.10.0
//> using platform scala-native

Expand All @@ -81,7 +80,6 @@ We can make the runtime itself even faster, using various Scala Native optimizat
We pass these using a `-–native-mode` scala-cli option or, like previously, by adding a using directive:

```scala compile title=size-higher-than.scala
//> using scala 3
//> using dep com.lihaoyi::os-lib::0.10.0
//> using platform scala-native
//> using nativeMode release-full
Expand Down
2 changes: 1 addition & 1 deletion website/docs/reference/cli-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ Use Ammonite (instead of the default Scala REPL)

Aliases: `--ammonite-ver`

Set the Ammonite version (3.0.0-M1-24-26133e66 by default)
Set the Ammonite version (3.0.0-M2-1-3763a1d4 by default)

### `--ammonite-arg`

Expand Down
Loading