Skip to content

Commit 1645937

Browse files
author
Oron Port
committed
update documentation for new version
1 parent 9b1fbd1 commit 1645937

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//> using scala 3.7.0-RC4
2-
//> using dep io.github.dfianthdl::dfhdl::0.10.0
3-
//> using plugin io.github.dfianthdl:::dfhdl-plugin:0.10.0
1+
//> using scala 3.7.1
2+
//> using dep io.github.dfianthdl::dfhdl::0.11.0
3+
//> using plugin io.github.dfianthdl:::dfhdl-plugin:0.11.0
44
//> using option -deprecation -language:implicitConversions

docs/getting-started/hello-world/scala-single-file/Counter8.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//> using scala 3.7.0-RC4
2-
//> using dep io.github.dfianthdl::dfhdl::0.10.0
3-
//> using plugin io.github.dfianthdl:::dfhdl-plugin:0.10.0
1+
//> using scala 3.7.1
2+
//> using dep io.github.dfianthdl::dfhdl::0.11.0
3+
//> using plugin io.github.dfianthdl:::dfhdl-plugin:0.11.0
44
//> using option -deprecation -language:implicitConversions
55

66
import dfhdl.* //import all the DFHDL goodness

docs/getting-started/initial-setup/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Initial Setup {#getting-started}
22

3-
DFHDL is a domain specific language (DSL) library written in the [Scala programming language](https://www.scala-lang.org){target="_blank"} (Scala 3.7.0-RC4), and as such it lets you utilize the entire Scala ecosystem, including IDEs, various tools, and other libraries.
3+
DFHDL is a domain specific language (DSL) library written in the [Scala programming language](https://www.scala-lang.org){target="_blank"} (Scala 3.7.1), and as such it lets you utilize the entire Scala ecosystem, including IDEs, various tools, and other libraries.
44

55
Is your system already fit for Scala development? [Jump to the DFHDL hello-world section][hello-world]
66

77
## Installing Scala and Other Dependencies
88

9-
We recommend directly installing Scala 3.7.0-RC4 (no need to install either [Coursier](https://get-coursier.io/){target="_blank"}, [Scala CLI](https://scala-cli.virtuslab.org/){target="_blank"}, or [sbt](https://www.scala-sbt.org/){target="_blank"}):
9+
We recommend directly installing Scala 3.7.1 (no need to install either [Coursier](https://get-coursier.io/){target="_blank"}, [Scala CLI](https://scala-cli.virtuslab.org/){target="_blank"}, or [sbt](https://www.scala-sbt.org/){target="_blank"}):
1010

1111
<div class="grid cards" markdown>
1212

@@ -18,7 +18,7 @@ We recommend directly installing Scala 3.7.0-RC4 (no need to install either [Cou
1818
Run the following in Windows command or powershell:
1919

2020
```{.cmd .copy linenums="0"}
21-
choco install scala --version=3.7.0-RC4
21+
choco install scala --version=3.7.1
2222
```
2323
///
2424
@@ -30,7 +30,7 @@ We recommend directly installing Scala 3.7.0-RC4 (no need to install either [Cou
3030
Run the following in your shell:
3131
3232
```{.sh-session .copy linenums="0"}
33-
sdk install scala 3.7.0-RC4
33+
sdk install scala 3.7.1
3434
```
3535
///
3636

docs/javascripts/scastie.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
let dfhdlVersion = "0.10.0";
2-
let scalaVersion = "3.7.0-RC4";
1+
let dfhdlVersion = "0.11.0";
2+
let scalaVersion = "3.7.1";
33

44
let sbtConfig = `
55
val dfhdlVersion = "${dfhdlVersion}"

0 commit comments

Comments
 (0)