Skip to content

Commit 2b84aaf

Browse files
committed
prepare release 0.14.1
Signed-off-by: Peter Gafert <[email protected]>
1 parent fb5fbb9 commit 2b84aaf

File tree

6 files changed

+21
-13
lines changed

6 files changed

+21
-13
lines changed

Diff for: README.md

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

1919
```
20-
testImplementation 'com.tngtech.archunit:archunit:0.14.0'
20+
testImplementation 'com.tngtech.archunit:archunit:0.14.1'
2121
```
2222

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

Diff for: build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ ext {
122122

123123
allprojects {
124124
group = 'com.tngtech.archunit'
125-
version = '0.14.0'
125+
version = '0.14.1'
126126

127127
repositories {
128128
mavenCentral()

Diff for: 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.14.0
11+
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.14.1
1212
- title: "About"
1313
url: /about
1414

Diff for: 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.14.0</version>
18+
<version>0.14.1</version>
1919
<scope>test</scope>
2020
</dependency>
2121
```
2222

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

Diff for: docs/_posts/2020-05-24-release-v0.14.1.markdown

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

Diff for: docs/userguide/html/000_Index.html

+7-7
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.14.0</span>
452+
<span id="revnumber">version 0.14.1</span>
453453
</div>
454454
<div id="toc" class="toc2">
455455
<div id="toctitle">Table of Contents</div>
@@ -614,7 +614,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
614614
<pre class="highlightjs highlight nowrap"><code data-lang="xml" class="language-xml hljs">&lt;dependency&gt;
615615
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
616616
&lt;artifactId&gt;archunit-junit4&lt;/artifactId&gt;
617-
&lt;version&gt;0.14.0&lt;/version&gt;
617+
&lt;version&gt;0.14.1&lt;/version&gt;
618618
&lt;scope&gt;test&lt;/scope&gt;
619619
&lt;/dependency&gt;</code></pre>
620620
</div>
@@ -623,7 +623,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
623623
<div class="title">build.gradle</div>
624624
<div class="content">
625625
<pre class="highlightjs highlight nowrap"><code class="language-none hljs">dependencies {
626-
testImplementation 'com.tngtech.archunit:archunit-junit4:0.14.0'
626+
testImplementation 'com.tngtech.archunit:archunit-junit4:0.14.1'
627627
}</code></pre>
628628
</div>
629629
</div>
@@ -644,7 +644,7 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
644644
<pre class="highlightjs highlight nowrap"><code data-lang="xml" class="language-xml hljs">&lt;dependency&gt;
645645
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
646646
&lt;artifactId&gt;archunit-junit5&lt;/artifactId&gt;
647-
&lt;version&gt;0.14.0&lt;/version&gt;
647+
&lt;version&gt;0.14.1&lt;/version&gt;
648648
&lt;scope&gt;test&lt;/scope&gt;
649649
&lt;/dependency&gt;</code></pre>
650650
</div>
@@ -653,7 +653,7 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
653653
<div class="title">build.gradle</div>
654654
<div class="content">
655655
<pre class="highlightjs highlight nowrap"><code class="language-none hljs">dependencies {
656-
testImplementation 'com.tngtech.archunit:archunit-junit5:0.14.0'
656+
testImplementation 'com.tngtech.archunit:archunit-junit5:0.14.1'
657657
}</code></pre>
658658
</div>
659659
</div>
@@ -670,7 +670,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
670670
<pre class="highlightjs highlight nowrap"><code data-lang="xml" class="language-xml hljs">&lt;dependency&gt;
671671
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
672672
&lt;artifactId&gt;archunit&lt;/artifactId&gt;
673-
&lt;version&gt;0.14.0&lt;/version&gt;
673+
&lt;version&gt;0.14.1&lt;/version&gt;
674674
&lt;scope&gt;test&lt;/scope&gt;
675675
&lt;/dependency&gt;</code></pre>
676676
</div>
@@ -679,7 +679,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
679679
<div class="title">build.gradle</div>
680680
<div class="content">
681681
<pre class="highlightjs highlight nowrap"><code class="language-none hljs">dependencies {
682-
testImplementation 'com.tngtech.archunit:archunit:0.14.0'
682+
testImplementation 'com.tngtech.archunit:archunit:0.14.1'
683683
}</code></pre>
684684
</div>
685685
</div>

0 commit comments

Comments
 (0)