Skip to content

Commit 31dc16e

Browse files
committed
updated site
1 parent e7fb811 commit 31dc16e

36 files changed

Lines changed: 277 additions & 267 deletions

2.x/docs/en/Setup.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,13 @@ <h3 id="installing-from-sdkman"><a class="header" href="#installing-from-sdkman"
231231
</code></pre>
232232
<h3 id="universal-packages"><a class="header" href="#universal-packages">Universal packages</a></h3>
233233
<ul>
234-
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.4/sbt-2.0.4.zip">sbt-2.0.4.zip</a></li>
235-
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.4/sbt-2.0.4.tgz">sbt-2.0.4.tgz</a></li>
236-
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.4/sbt-2.0.4.msi">sbt-2.0.4.msi</a></li>
234+
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.5/sbt-2.0.5.zip">sbt-2.0.5.zip</a></li>
235+
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.5/sbt-2.0.5.tgz">sbt-2.0.5.tgz</a></li>
236+
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.5/sbt-2.0.5.msi">sbt-2.0.5.msi</a></li>
237237
</ul>
238238
<h2 id="verify-the-sbt-runner"><a class="header" href="#verify-the-sbt-runner">Verify the sbt runner</a></h2>
239239
<pre><code class="language-bash">sbt --script-version
240-
# 2.0.4
240+
# 2.0.5
241241
</code></pre>
242242

243243
</main>

2.x/docs/en/changes/migrating-from-sbt-1.x.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ <h3 id="cross-building-sbt-plugin-with-sbt-1x"><a class="header" href="#cross-bu
312312
(pluginCrossBuild / sbtVersion) := {
313313
scalaBinaryVersion.value match {
314314
case "2.12" =&gt; "1.5.8"
315-
case _ =&gt; "2.0.4"
315+
case _ =&gt; "2.0.5"
316316
}
317317
},
318318
)

2.x/docs/en/guide/sbt-components.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ <h2 id="sbt-runner"><a class="header" href="#sbt-runner">sbt runner</a></h2>
216216
<p>An sbt build is executed using <code>sbt</code> runner, also called "sbt-the-shell-script" to distinguish from other components. It's important to note is that sbt runner is designed to run <strong>any version</strong> of sbt.</p>
217217
<h3 id="specifying-sbt-version-with-projectbuildproperties"><a class="header" href="#specifying-sbt-version-with-projectbuildproperties">Specifying sbt version with project/build.properties</a></h3>
218218
<p>sbt runner executes a subcomponent called sbt launcher, which reads <code>project/build.properties</code> to determine the sbt version for the build, and downloads the artifacts if they haven't been cached:</p>
219-
<pre><code>sbt.version=2.0.4
219+
<pre><code>sbt.version=2.0.5
220220
</code></pre>
221221
<p>This means that:</p>
222222
<ul>

2.x/docs/en/print.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -254,13 +254,13 @@ <h3 id="installing-from-sdkman"><a class="header" href="#installing-from-sdkman"
254254
</code></pre>
255255
<h3 id="universal-packages"><a class="header" href="#universal-packages">Universal packages</a></h3>
256256
<ul>
257-
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.4/sbt-2.0.4.zip">sbt-2.0.4.zip</a></li>
258-
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.4/sbt-2.0.4.tgz">sbt-2.0.4.tgz</a></li>
259-
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.4/sbt-2.0.4.msi">sbt-2.0.4.msi</a></li>
257+
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.5/sbt-2.0.5.zip">sbt-2.0.5.zip</a></li>
258+
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.5/sbt-2.0.5.tgz">sbt-2.0.5.tgz</a></li>
259+
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.5/sbt-2.0.5.msi">sbt-2.0.5.msi</a></li>
260260
</ul>
261261
<h2 id="verify-the-sbt-runner"><a class="header" href="#verify-the-sbt-runner">Verify the sbt runner</a></h2>
262262
<pre><code class="language-bash">sbt --script-version
263-
# 2.0.4
263+
# 2.0.5
264264
</code></pre>
265265
<div style="break-before: page; page-break-before: always;"></div><h1 id="sbt-by-example"><a class="header" href="#sbt-by-example">sbt by example</a></h1>
266266
<p>This page assumes you've <a href="Setup.html">installed sbt runner</a>.</p>
@@ -270,11 +270,11 @@ <h3 id="create-a-minimum-sbt-build"><a class="header" href="#create-a-minimum-sb
270270
cd foo-build
271271
touch build.sbt
272272
mkdir project
273-
echo "sbt.version=2.0.4" &gt; project/build.properties
273+
echo "sbt.version=2.0.5" &gt; project/build.properties
274274
</code></pre>
275275
<h3 id="start-sbt-shell"><a class="header" href="#start-sbt-shell">Start sbt shell</a></h3>
276276
<pre><code class="language-bash">$ sbt
277-
[info] welcome to sbt 2.0.4 (Azul Systems, Inc. Java)
277+
[info] welcome to sbt 2.0.5 (Azul Systems, Inc. Java)
278278
....
279279
[info] started sbt server
280280
sbt:foo-build&gt;
@@ -891,7 +891,7 @@ <h2 id="sbt-runner"><a class="header" href="#sbt-runner">sbt runner</a></h2>
891891
<p>An sbt build is executed using <code>sbt</code> runner, also called "sbt-the-shell-script" to distinguish from other components. It's important to note is that sbt runner is designed to run <strong>any version</strong> of sbt.</p>
892892
<h3 id="specifying-sbt-version-with-projectbuildproperties"><a class="header" href="#specifying-sbt-version-with-projectbuildproperties">Specifying sbt version with project/build.properties</a></h3>
893893
<p>sbt runner executes a subcomponent called sbt launcher, which reads <code>project/build.properties</code> to determine the sbt version for the build, and downloads the artifacts if they haven't been cached:</p>
894-
<pre><code>sbt.version=2.0.4
894+
<pre><code>sbt.version=2.0.5
895895
</code></pre>
896896
<p>This means that:</p>
897897
<ul>
@@ -1815,7 +1815,7 @@ <h3 id="cross-building-sbt-plugin-with-sbt-1x"><a class="header" href="#cross-bu
18151815
(pluginCrossBuild / sbtVersion) := {
18161816
scalaBinaryVersion.value match {
18171817
case "2.12" =&gt; "1.5.8"
1818-
case _ =&gt; "2.0.4"
1818+
case _ =&gt; "2.0.5"
18191819
}
18201820
},
18211821
)
@@ -2164,7 +2164,7 @@ <h3 id="sbt-runner-and-sbt-server"><a class="header" href="#sbt-runner-and-sbt-s
21642164
</ul>
21652165
</li>
21662166
</ul>
2167-
<pre><code>sbt.version=2.0.4
2167+
<pre><code>sbt.version=2.0.5
21682168
</code></pre>
21692169
<p>This mechanism allows builds to be configured to a specific version of sbt, and everyone working on the project would use the same build semantics, regardless of the sbt runner installed on their machine.</p>
21702170
<p>This also means that some features are implemented at sbt runner or sbtn level, while other features are implemented at sbt server level.</p>
@@ -4969,11 +4969,11 @@ <h3 id="constructing-the-parser"><a class="header" href="#constructing-the-parse
49694969
The input syntax defined isn't very flexible; it is just a
49704970
demonstration. It will produce one of the following values for a
49714971
successful parse (assuming the current Scala version is 3.8.4,
4972-
the current sbt version is 2.0.4, and there are 3 commands left to
4972+
the current sbt version is 2.0.5, and there are 3 commands left to
49734973
run):</p>
49744974
<ul>
49754975
<li>(scala,3.8.4)</li>
4976-
<li>(sbt,2.0.4)</li>
4976+
<li>(sbt,2.0.5)</li>
49774977
<li>(commands,3)</li>
49784978
</ul>
49794979
<p>Again, we were able to access the current Scala and sbt version for the
@@ -6313,7 +6313,7 @@ <h2 id="steps"><a class="header" href="#steps">Steps</a></h2>
63136313
<ol>
63146314
<li>Create a fresh directory, like <code>hello_scala/</code></li>
63156315
<li>Create a directory named <code>project/</code> under <code>hello_scala/</code>, and create <code>project/build.properties</code> with
6316-
<pre><code>sbt.version=2.0.4
6316+
<pre><code>sbt.version=2.0.5
63176317
</code></pre>
63186318
</li>
63196319
<li>Under <code>hello_scala/</code>, create <code>build.sbt</code>:

2.x/docs/en/recipes/hello-world.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ <h2 id="steps"><a class="header" href="#steps">Steps</a></h2>
218218
<ol>
219219
<li>Create a fresh directory, like <code>hello_scala/</code></li>
220220
<li>Create a directory named <code>project/</code> under <code>hello_scala/</code>, and create <code>project/build.properties</code> with
221-
<pre><code>sbt.version=2.0.4
221+
<pre><code>sbt.version=2.0.5
222222
</code></pre>
223223
</li>
224224
<li>Under <code>hello_scala/</code>, create <code>build.sbt</code>:

2.x/docs/en/reference/input-task.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,11 @@ <h3 id="constructing-the-parser"><a class="header" href="#constructing-the-parse
286286
The input syntax defined isn't very flexible; it is just a
287287
demonstration. It will produce one of the following values for a
288288
successful parse (assuming the current Scala version is 3.8.4,
289-
the current sbt version is 2.0.4, and there are 3 commands left to
289+
the current sbt version is 2.0.5, and there are 3 commands left to
290290
run):</p>
291291
<ul>
292292
<li>(scala,3.8.4)</li>
293-
<li>(sbt,2.0.4)</li>
293+
<li>(sbt,2.0.5)</li>
294294
<li>(commands,3)</li>
295295
</ul>
296296
<p>Again, we were able to access the current Scala and sbt version for the

2.x/docs/en/reference/sbt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ <h3 id="sbt-runner-and-sbt-server"><a class="header" href="#sbt-runner-and-sbt-s
236236
</ul>
237237
</li>
238238
</ul>
239-
<pre><code>sbt.version=2.0.4
239+
<pre><code>sbt.version=2.0.5
240240
</code></pre>
241241
<p>This mechanism allows builds to be configured to a specific version of sbt, and everyone working on the project would use the same build semantics, regardless of the sbt runner installed on their machine.</p>
242242
<p>This also means that some features are implemented at sbt runner or sbtn level, while other features are implemented at sbt server level.</p>

2.x/docs/en/sbt-by-example.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,11 @@ <h3 id="create-a-minimum-sbt-build"><a class="header" href="#create-a-minimum-sb
219219
cd foo-build
220220
touch build.sbt
221221
mkdir project
222-
echo "sbt.version=2.0.4" &gt; project/build.properties
222+
echo "sbt.version=2.0.5" &gt; project/build.properties
223223
</code></pre>
224224
<h3 id="start-sbt-shell"><a class="header" href="#start-sbt-shell">Start sbt shell</a></h3>
225225
<pre><code class="language-bash">$ sbt
226-
[info] welcome to sbt 2.0.4 (Azul Systems, Inc. Java)
226+
[info] welcome to sbt 2.0.5 (Azul Systems, Inc. Java)
227227
....
228228
[info] started sbt server
229229
sbt:foo-build&gt;

2.x/docs/en/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.x/docs/ja/Setup.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,13 +230,13 @@ <h3 id="sdkman-からのインストール"><a class="header" href="#sdkman-か
230230
</code></pre>
231231
<h3 id="ユニバーサルパッケージ"><a class="header" href="#ユニバーサルパッケージ">ユニバーサル・パッケージ</a></h3>
232232
<ul>
233-
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.4/sbt-2.0.4.zip">sbt-2.0.4.zip</a></li>
234-
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.4/sbt-2.0.4.tgz">sbt-2.0.4.tgz</a></li>
235-
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.4/sbt-2.0.4.msi">sbt-2.0.4.msi</a></li>
233+
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.5/sbt-2.0.5.zip">sbt-2.0.5.zip</a></li>
234+
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.5/sbt-2.0.5.tgz">sbt-2.0.5.tgz</a></li>
235+
<li><a href="https://github.com/sbt/sbt/releases/download/v2.0.5/sbt-2.0.5.msi">sbt-2.0.5.msi</a></li>
236236
</ul>
237237
<h2 id="sbt-runner-の確認"><a class="header" href="#sbt-runner-の確認">sbt runner の確認</a></h2>
238238
<pre><code class="language-bash">sbt --script-version
239-
# 2.0.4
239+
# 2.0.5
240240
</code></pre>
241241

242242
</main>

0 commit comments

Comments
 (0)