Skip to content

Commit 8a5058e

Browse files
committed
prepare release 0.20.0
Signed-off-by: Peter Gafert <[email protected]>
1 parent b7a4ede commit 8a5058e

26 files changed

+22
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ framework.
1717
###### Gradle
1818

1919
```
20-
testImplementation 'com.tngtech.archunit:archunit:0.19.0'
20+
testImplementation 'com.tngtech.archunit:archunit:0.20.0'
2121
```
2222

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

build-steps/release/expected/archunit-junit5-engine-api.pom

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>org.junit.platform</groupId>
4848
<artifactId>junit-platform-engine</artifactId>
49-
<version>1.7.1</version>
49+
<version>1.7.2</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
</dependencies>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ ext {
104104

105105
allprojects {
106106
group = 'com.tngtech.archunit'
107-
version = '0.20.0-SNAPSHOT'
107+
version = '0.20.0'
108108

109109
repositories {
110110
mavenCentral()

docs/_data/navigation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ main:
1010
- title: "User Guide"
1111
url: /userguide/html/000_Index.html
1212
- title: "API"
13-
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.19.0
13+
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.20.0
1414
- title: "About"
1515
url: /about

docs/_pages/getting-started.md

Lines changed: 2 additions & 2 deletions
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.19.0</version>
18+
<version>0.20.0</version>
1919
<scope>test</scope>
2020
</dependency>
2121
```
2222

2323
#### Gradle
2424
```groovy
2525
dependencies {
26-
testImplementation 'com.tngtech.archunit:archunit:0.19.0'
26+
testImplementation 'com.tngtech.archunit:archunit:0.20.0'
2727
}
2828
```
2929

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

docs/userguide/html/000_Index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@
449449
<div id="header">
450450
<h1>ArchUnit User Guide</h1>
451451
<div class="details">
452-
<span id="revnumber">version 0.19.0</span>
452+
<span id="revnumber">version 0.20.0</span>
453453
</div>
454454
<div id="toc" class="toc2">
455455
<div id="toctitle">Table of Contents</div>
@@ -616,7 +616,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
616616
<pre class="highlightjs highlight nowrap"><code data-lang="xml" class="language-xml hljs">&lt;dependency&gt;
617617
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
618618
&lt;artifactId&gt;archunit-junit4&lt;/artifactId&gt;
619-
&lt;version&gt;0.19.0&lt;/version&gt;
619+
&lt;version&gt;0.20.0&lt;/version&gt;
620620
&lt;scope&gt;test&lt;/scope&gt;
621621
&lt;/dependency&gt;</code></pre>
622622
</div>
@@ -625,7 +625,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
625625
<div class="title">build.gradle</div>
626626
<div class="content">
627627
<pre class="highlightjs highlight nowrap"><code class="language-none hljs">dependencies {
628-
testImplementation 'com.tngtech.archunit:archunit-junit4:0.19.0'
628+
testImplementation 'com.tngtech.archunit:archunit-junit4:0.20.0'
629629
}</code></pre>
630630
</div>
631631
</div>
@@ -646,7 +646,7 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
646646
<pre class="highlightjs highlight nowrap"><code data-lang="xml" class="language-xml hljs">&lt;dependency&gt;
647647
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
648648
&lt;artifactId&gt;archunit-junit5&lt;/artifactId&gt;
649-
&lt;version&gt;0.19.0&lt;/version&gt;
649+
&lt;version&gt;0.20.0&lt;/version&gt;
650650
&lt;scope&gt;test&lt;/scope&gt;
651651
&lt;/dependency&gt;</code></pre>
652652
</div>
@@ -655,7 +655,7 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
655655
<div class="title">build.gradle</div>
656656
<div class="content">
657657
<pre class="highlightjs highlight nowrap"><code class="language-none hljs">dependencies {
658-
testImplementation 'com.tngtech.archunit:archunit-junit5:0.19.0'
658+
testImplementation 'com.tngtech.archunit:archunit-junit5:0.20.0'
659659
}</code></pre>
660660
</div>
661661
</div>
@@ -672,7 +672,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
672672
<pre class="highlightjs highlight nowrap"><code data-lang="xml" class="language-xml hljs">&lt;dependency&gt;
673673
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
674674
&lt;artifactId&gt;archunit&lt;/artifactId&gt;
675-
&lt;version&gt;0.19.0&lt;/version&gt;
675+
&lt;version&gt;0.20.0&lt;/version&gt;
676676
&lt;scope&gt;test&lt;/scope&gt;
677677
&lt;/dependency&gt;</code></pre>
678678
</div>
@@ -681,7 +681,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
681681
<div class="title">build.gradle</div>
682682
<div class="content">
683683
<pre class="highlightjs highlight nowrap"><code class="language-none hljs">dependencies {
684-
testImplementation 'com.tngtech.archunit:archunit:0.19.0'
684+
testImplementation 'com.tngtech.archunit:archunit:0.20.0'
685685
}</code></pre>
686686
</div>
687687
</div>
1 Byte
Loading
1 Byte
Loading

docs/userguide/html/cycle-check.png

0 Bytes
Loading

0 commit comments

Comments
 (0)