Skip to content

Commit 975171d

Browse files
committed
Adjust versions in docs
Signed-off-by: Peter Gafert <[email protected]>
1 parent 11a3847 commit 975171d

8 files changed

+30
-22
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ framework.
1717
###### Gradle
1818

1919
```
20-
testCompile 'com.tngtech.archunit:archunit:0.10.1'
20+
testCompile 'com.tngtech.archunit:archunit:0.10.2'
2121
```
2222

2323
###### Maven
@@ -26,7 +26,7 @@ testCompile 'com.tngtech.archunit:archunit:0.10.1'
2626
<dependency>
2727
<groupId>com.tngtech.archunit</groupId>
2828
<artifactId>archunit</artifactId>
29-
<version>0.10.1</version>
29+
<version>0.10.2</version>
3030
<scope>test</scope>
3131
</dependency>
3232
```

docs/_data/navigation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ main:
88
- title: "User Guide"
99
url: /userguide/html/000_Index.html
1010
- title: "API"
11-
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.10.1
11+
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.10.2
1212
- title: "About"
1313
url: /about
1414

docs/_pages/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ ArchUnit can be obtained from Maven Central.
1515
<dependency>
1616
<groupId>com.tngtech.archunit</groupId>
1717
<artifactId>archunit</artifactId>
18-
<version>0.10.1</version>
18+
<version>0.10.2</version>
1919
<scope>test</scope>
2020
</dependency>
2121
```
2222

2323
#### Gradle
2424
```groovy
2525
dependencies {
26-
testCompile 'com.tngtech.archunit:archunit:0.10.1'
26+
testCompile 'com.tngtech.archunit:archunit:0.10.2'
2727
}
2828
```
2929

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: splash
3+
title: "New release of ArchUnit (v0.10.2)"
4+
date: 2019-03-31 12:00:00
5+
categories: news release
6+
---
7+
8+
A new release of ArchUnit (v0.10.2) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v0.10.2 "ArchUnit v0.10.2 on GitHub").

docs/userguide/000_Index.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ifndef::env-site[:toc: left]
77
:page-layout: splash
88
:page-description: {description}
99
:page-keywords: {keywords}
10-
:version: 0.10.1
10+
:version: 0.10.2
1111
:icons: font
1212
:source-highlighter: coderay
1313
:prewrap!:

docs/userguide/002_Installation.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Maven Central:
1717
<dependency>
1818
<groupId>com.tngtech.archunit</groupId>
1919
<artifactId>archunit-junit4</artifactId>
20-
<version>0.10.1</version>
20+
<version>0.10.2</version>
2121
<scope>test</scope>
2222
</dependency>
2323
----
@@ -26,7 +26,7 @@ Maven Central:
2626
.build.gradle
2727
----
2828
dependencies {
29-
testCompile 'com.tngtech.archunit:archunit-junit4:0.10.1'
29+
testCompile 'com.tngtech.archunit:archunit-junit4:0.10.2'
3030
}
3131
----
3232

@@ -56,13 +56,13 @@ A typical Maven configuration could look like this:
5656
<dependency>
5757
<groupId>com.tngtech.archunit</groupId>
5858
<artifactId>archunit-junit5-api</artifactId>
59-
<version>0.10.1</version>
59+
<version>0.10.2</version>
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.tngtech.archunit</groupId>
6464
<artifactId>archunit-junit5-engine</artifactId>
65-
<version>0.10.1</version>
65+
<version>0.10.2</version>
6666
<scope>test</scope>
6767
</dependency>
6868
</dependencies>
@@ -80,8 +80,8 @@ The configuration for Gradle allows to clearly distinguish a test runtime scope:
8080
----
8181
dependencies {
8282
...
83-
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.10.1'
84-
testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.10.1'
83+
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.10.2'
84+
testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.10.2'
8585
}
8686
----
8787

@@ -96,7 +96,7 @@ context, include the core ArchUnit dependency from Maven Central:
9696
<dependency>
9797
<groupId>com.tngtech.archunit</groupId>
9898
<artifactId>archunit</artifactId>
99-
<version>0.10.1</version>
99+
<version>0.10.2</version>
100100
<scope>test</scope>
101101
</dependency>
102102
----
@@ -105,7 +105,7 @@ context, include the core ArchUnit dependency from Maven Central:
105105
.build.gradle
106106
----
107107
dependencies {
108-
testCompile 'com.tngtech.archunit:archunit:0.10.1'
108+
testCompile 'com.tngtech.archunit:archunit:0.10.2'
109109
}
110110
----
111111

docs/userguide/html/000_Index.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
609609
<pre class="highlightjs highlight nowrap"><code class="language-xml hljs" data-lang="xml">&lt;dependency&gt;
610610
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
611611
&lt;artifactId&gt;archunit-junit4&lt;/artifactId&gt;
612-
&lt;version&gt;0.10.1&lt;/version&gt;
612+
&lt;version&gt;0.10.2&lt;/version&gt;
613613
&lt;scope&gt;test&lt;/scope&gt;
614614
&lt;/dependency&gt;</code></pre>
615615
</div>
@@ -618,7 +618,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
618618
<div class="title">build.gradle</div>
619619
<div class="content">
620620
<pre class="highlightjs highlight nowrap"><code>dependencies {
621-
testCompile 'com.tngtech.archunit:archunit-junit4:0.10.1'
621+
testCompile 'com.tngtech.archunit:archunit-junit4:0.10.2'
622622
}</code></pre>
623623
</div>
624624
</div>
@@ -650,13 +650,13 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
650650
&lt;dependency&gt;
651651
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
652652
&lt;artifactId&gt;archunit-junit5-api&lt;/artifactId&gt;
653-
&lt;version&gt;0.10.1&lt;/version&gt;
653+
&lt;version&gt;0.10.2&lt;/version&gt;
654654
&lt;scope&gt;test&lt;/scope&gt;
655655
&lt;/dependency&gt;
656656
&lt;dependency&gt;
657657
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
658658
&lt;artifactId&gt;archunit-junit5-engine&lt;/artifactId&gt;
659-
&lt;version&gt;0.10.1&lt;/version&gt;
659+
&lt;version&gt;0.10.2&lt;/version&gt;
660660
&lt;scope&gt;test&lt;/scope&gt;
661661
&lt;/dependency&gt;
662662
&lt;/dependencies&gt;
@@ -685,8 +685,8 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
685685
<div class="content">
686686
<pre class="highlightjs highlight nowrap"><code>dependencies {
687687
...
688-
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.10.1'
689-
testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.10.1'
688+
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.10.2'
689+
testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.10.2'
690690
}</code></pre>
691691
</div>
692692
</div>
@@ -703,7 +703,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
703703
<pre class="highlightjs highlight nowrap"><code class="language-xml hljs" data-lang="xml">&lt;dependency&gt;
704704
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
705705
&lt;artifactId&gt;archunit&lt;/artifactId&gt;
706-
&lt;version&gt;0.10.1&lt;/version&gt;
706+
&lt;version&gt;0.10.2&lt;/version&gt;
707707
&lt;scope&gt;test&lt;/scope&gt;
708708
&lt;/dependency&gt;</code></pre>
709709
</div>
@@ -712,7 +712,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
712712
<div class="title">build.gradle</div>
713713
<div class="content">
714714
<pre class="highlightjs highlight nowrap"><code>dependencies {
715-
testCompile 'com.tngtech.archunit:archunit:0.10.1'
715+
testCompile 'com.tngtech.archunit:archunit:0.10.2'
716716
}</code></pre>
717717
</div>
718718
</div>
-5.26 KB
Loading

0 commit comments

Comments
 (0)