Skip to content

Commit

Permalink
Update to version 0.9.3
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Gafert <peter.gafert@tngtech.com>
  • Loading branch information
codecholeric committed Nov 20, 2018
1 parent 83583ee commit e33842d
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 24 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.9.2'
testCompile 'com.tngtech.archunit:archunit:0.9.3'
```

###### Maven
Expand All @@ -26,7 +26,7 @@ testCompile 'com.tngtech.archunit:archunit:0.9.2'
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<scope>test</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ task wrapper(type: Wrapper) {

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

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.9.2
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.9.3
- 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.9.2</version>
<version>0.9.3</version>
<scope>test</scope>
</dependency>
```

#### Gradle
```groovy
dependencies {
testCompile 'com.tngtech.archunit:archunit:0.9.2'
testCompile 'com.tngtech.archunit:archunit:0.9.3'
}
```

Expand Down
8 changes: 8 additions & 0 deletions docs/_posts/2018-11-20-release-v0.9.3.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: splash
title: "New release of ArchUnit (v0.9.3)"
date: 2018-11-20 17:00:00
categories: news release
---

A new release of ArchUnit (v0.9.3) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v0.9.3 "ArchUnit v0.9.3 on GitHub").
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.9.2
:version: 0.9.3
:icons: font
:source-highlighter: coderay
:prewrap!:
Expand Down
16 changes: 8 additions & 8 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.9.2</version>
<version>0.9.3</version>
<scope>test</scope>
</dependency>
----
Expand All @@ -26,7 +26,7 @@ Maven Central:
.build.gradle
----
dependencies {
testCompile 'com.tngtech.archunit:archunit-junit4:0.9.2'
testCompile 'com.tngtech.archunit:archunit-junit4:0.9.3'
}
----

Expand Down Expand Up @@ -56,7 +56,7 @@ A typical Maven configuration could look like this:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5-engine</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
</dependency>
</dependencies>
</plugin>
Expand All @@ -68,7 +68,7 @@ A typical Maven configuration could look like this:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5-api</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -87,8 +87,8 @@ The configuration for Gradle is much simpler due to the existence of a test runt
----
dependencies {
...
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.9.2'
testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.9.2'
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.9.3'
testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.9.3'
}
----

Expand All @@ -103,7 +103,7 @@ context, include the core ArchUnit dependency from Maven Central:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<scope>test</scope>
</dependency>
----
Expand All @@ -112,6 +112,6 @@ context, include the core ArchUnit dependency from Maven Central:
.build.gradle
----
dependencies {
testCompile 'com.tngtech.archunit:archunit:0.9.2'
testCompile 'com.tngtech.archunit:archunit:0.9.3'
}
----
18 changes: 9 additions & 9 deletions docs/userguide/html/000_Index.html
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,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.9.2&lt;/version&gt;
&lt;version&gt;0.9.3&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;</code></pre>
</div>
Expand All @@ -616,7 +616,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.9.2'
testCompile 'com.tngtech.archunit:archunit-junit4:0.9.3'
}</code></pre>
</div>
</div>
Expand Down Expand Up @@ -648,7 +648,7 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
&lt;dependency&gt;
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
&lt;artifactId&gt;archunit-junit5-engine&lt;/artifactId&gt;
&lt;version&gt;0.9.2&lt;/version&gt;
&lt;version&gt;0.9.3&lt;/version&gt;
&lt;/dependency&gt;
&lt;/dependencies&gt;
&lt;/plugin&gt;
Expand All @@ -660,7 +660,7 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
&lt;dependency&gt;
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
&lt;artifactId&gt;archunit-junit5-api&lt;/artifactId&gt;
&lt;version&gt;0.9.2&lt;/version&gt;
&lt;version&gt;0.9.3&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;
&lt;/dependencies&gt;
Expand Down Expand Up @@ -690,8 +690,8 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
<div class="content">
<pre class="highlightjs highlight nowrap"><code>dependencies {
...
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.9.2'
testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.9.2'
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.9.3'
testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.9.3'
}</code></pre>
</div>
</div>
Expand All @@ -708,7 +708,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.9.2&lt;/version&gt;
&lt;version&gt;0.9.3&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;</code></pre>
</div>
Expand All @@ -717,7 +717,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.9.2'
testCompile 'com.tngtech.archunit:archunit:0.9.3'
}</code></pre>
</div>
</div>
Expand Down Expand Up @@ -858,7 +858,7 @@ <h3 id="_using_junit_support_with_kotlin"><a class="anchor" href="#_using_junit_

@ArchTest
fun rule_as_method(classes: JavaClasses) {
ArchRule rule = ArchRuleDefinition.noClasses().should()...
val rule = ArchRuleDefinition.noClasses().should()...
rule.check(classes)
}
}</code></pre>
Expand Down

0 comments on commit e33842d

Please sign in to comment.