This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch NLPCRAFT-513
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft-website.git
The following commit(s) were added to refs/heads/NLPCRAFT-513 by this push:
new 620f5bc versions fixed.
620f5bc is described below
commit 620f5bcdaebb515d05b559d2eed70cf8c3d46dab
Author: Sergey Kamov <[email protected]>
AuthorDate: Fri Jan 27 09:05:50 2023 +0400
versions fixed.
---
installation.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/installation.html b/installation.html
index d31db91..d074cbd 100644
--- a/installation.html
+++ b/installation.html
@@ -93,7 +93,7 @@ id: installation
<b>Minimal Java and Scala versions</b>
</p>
<p>
- Starting with version <b>1.0.0</b> NLPCraft requires JDK 11+
and Scala 3.1.3.<br/>
+ Starting with version <b>1.0.0</b> NLPCraft requires JDK 11+
and Scala 3.2.2.<br/>
</p>
</div>
</section>
@@ -105,13 +105,13 @@ id: installation
</p>
<pre class="brush: js, highlight: [7]">
ThisBuild / version := "0.1.0-SNAPSHOT"
- ThisBuild / scalaVersion := "3.1.3"
+ ThisBuild / scalaVersion := "3.2.2"
lazy val root = (project in file("."))
.settings(
name := "Your project",
version := "{{site.latest_version}}",
libraryDependencies += "org.apache.nlpcraft" % "nlpcraft" %
"{{site.latest_version}}",
- libraryDependencies += "org.scalatest" %% "scalatest" %
"3.2.14" % "test"
+ libraryDependencies += "org.scalatest" %% "scalatest" %
"3.2.15" % "test"
)
</pre>