Skip to content

Commit

Permalink
adjust docs to release version 0.13.1
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Gafert <[email protected]>
  • Loading branch information
codecholeric committed Feb 4, 2020
1 parent 51087d5 commit 9bfc075
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ framework.
###### Gradle

```
testCompile 'com.tngtech.archunit:archunit:0.13.0'
testCompile 'com.tngtech.archunit:archunit:0.13.1'
```

###### Maven
Expand All @@ -26,7 +26,7 @@ testCompile 'com.tngtech.archunit:archunit:0.13.0'
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>0.13.0</version>
<version>0.13.1</version>
<scope>test</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build-steps/release/create-release-news.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ task createReleaseNews {
assert !target.exists(): "News article ${target} already exists"
target.text = createArticleText(dateYYYYMMDDWithDash, version)
}
}
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ wrapper {

allprojects {
group = 'com.tngtech.archunit'
version = '0.13.1-SNAPSHOT'
version = '0.13.1'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion docs/_data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ main:
- title: "User Guide"
url: /userguide/html/000_Index.html
- title: "API"
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.13.0
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.13.1
- title: "About"
url: /about

4 changes: 2 additions & 2 deletions docs/_pages/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ ArchUnit can be obtained from Maven Central.
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>0.13.0</version>
<version>0.13.1</version>
<scope>test</scope>
</dependency>
```

#### Gradle
```groovy
dependencies {
testCompile 'com.tngtech.archunit:archunit:0.13.0'
testCompile 'com.tngtech.archunit:archunit:0.13.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/userguide/000_Index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ifndef::env-site[:toc: left]
:page-layout: splash
:page-description: {description}
:page-keywords: {keywords}
:version: 0.13.0
:version: 0.13.1
:icons: font
:source-highlighter: coderay
:prewrap!:
Expand Down
12 changes: 6 additions & 6 deletions docs/userguide/002_Installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Maven Central:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit4</artifactId>
<version>0.13.0</version>
<version>0.13.1</version>
<scope>test</scope>
</dependency>
----
Expand All @@ -26,7 +26,7 @@ Maven Central:
.build.gradle
----
dependencies {
testCompile 'com.tngtech.archunit:archunit-junit4:0.13.0'
testCompile 'com.tngtech.archunit:archunit-junit4:0.13.1'
}
----

Expand All @@ -45,7 +45,7 @@ from Maven Central:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5</artifactId>
<version>0.13.0</version>
<version>0.13.1</version>
<scope>test</scope>
</dependency>
----
Expand All @@ -54,7 +54,7 @@ from Maven Central:
.build.gradle
----
dependencies {
testCompile 'com.tngtech.archunit:archunit-junit5:0.13.0'
testCompile 'com.tngtech.archunit:archunit-junit5:0.13.1'
}
----

Expand All @@ -69,7 +69,7 @@ context, include the core ArchUnit dependency from Maven Central:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>0.13.0</version>
<version>0.13.1</version>
<scope>test</scope>
</dependency>
----
Expand All @@ -78,7 +78,7 @@ context, include the core ArchUnit dependency from Maven Central:
.build.gradle
----
dependencies {
testCompile 'com.tngtech.archunit:archunit:0.13.0'
testCompile 'com.tngtech.archunit:archunit:0.13.1'
}
----

Expand Down
12 changes: 6 additions & 6 deletions docs/userguide/html/000_Index.html
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
<pre class="highlightjs highlight nowrap"><code class="language-xml hljs" data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
&lt;artifactId&gt;archunit-junit4&lt;/artifactId&gt;
&lt;version&gt;0.13.0&lt;/version&gt;
&lt;version&gt;0.13.1&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;</code></pre>
</div>
Expand All @@ -620,7 +620,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
<div class="title">build.gradle</div>
<div class="content">
<pre class="highlightjs highlight nowrap"><code>dependencies {
testCompile 'com.tngtech.archunit:archunit-junit4:0.13.0'
testCompile 'com.tngtech.archunit:archunit-junit4:0.13.1'
}</code></pre>
</div>
</div>
Expand All @@ -641,7 +641,7 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
<pre class="highlightjs highlight nowrap"><code class="language-xml hljs" data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
&lt;artifactId&gt;archunit-junit5&lt;/artifactId&gt;
&lt;version&gt;0.13.0&lt;/version&gt;
&lt;version&gt;0.13.1&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;</code></pre>
</div>
Expand All @@ -650,7 +650,7 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
<div class="title">build.gradle</div>
<div class="content">
<pre class="highlightjs highlight nowrap"><code>dependencies {
testCompile 'com.tngtech.archunit:archunit-junit5:0.13.0'
testCompile 'com.tngtech.archunit:archunit-junit5:0.13.1'
}</code></pre>
</div>
</div>
Expand All @@ -667,7 +667,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
<pre class="highlightjs highlight nowrap"><code class="language-xml hljs" data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
&lt;artifactId&gt;archunit&lt;/artifactId&gt;
&lt;version&gt;0.13.0&lt;/version&gt;
&lt;version&gt;0.13.1&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;</code></pre>
</div>
Expand All @@ -676,7 +676,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
<div class="title">build.gradle</div>
<div class="content">
<pre class="highlightjs highlight nowrap"><code>dependencies {
testCompile 'com.tngtech.archunit:archunit:0.13.0'
testCompile 'com.tngtech.archunit:archunit:0.13.1'
}</code></pre>
</div>
</div>
Expand Down

0 comments on commit 9bfc075

Please sign in to comment.