diff --git a/README.md b/README.md
index 74d6f46213..222fc16418 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ framework.
###### Gradle
```
-testCompile 'com.tngtech.archunit:archunit:0.9.3'
+testCompile 'com.tngtech.archunit:archunit:0.10.0'
```
###### Maven
@@ -26,7 +26,7 @@ testCompile 'com.tngtech.archunit:archunit:0.9.3'
com.tngtech.archunit
archunit
- 0.9.3
+ 0.10.0
test
```
diff --git a/build.gradle b/build.gradle
index fcde62e3ad..1c74b42789 100644
--- a/build.gradle
+++ b/build.gradle
@@ -112,7 +112,7 @@ wrapper {
allprojects {
group = 'com.tngtech.archunit'
- version = '0.9.4-SNAPSHOT'
+ version = '0.10.0-SNAPSHOT'
repositories {
mavenCentral()
diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml
index 6e9e920ef2..b6aa9a9d5c 100644
--- a/docs/_data/navigation.yml
+++ b/docs/_data/navigation.yml
@@ -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.3
+ url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.10.0
- title: "About"
url: /about
diff --git a/docs/_pages/getting-started.md b/docs/_pages/getting-started.md
index 676937b3a6..b98a92a61d 100644
--- a/docs/_pages/getting-started.md
+++ b/docs/_pages/getting-started.md
@@ -15,7 +15,7 @@ ArchUnit can be obtained from Maven Central.
com.tngtech.archunit
archunit
- 0.9.3
+ 0.10.0
test
```
@@ -23,7 +23,7 @@ ArchUnit can be obtained from Maven Central.
#### Gradle
```groovy
dependencies {
- testCompile 'com.tngtech.archunit:archunit:0.9.3'
+ testCompile 'com.tngtech.archunit:archunit:0.10.0'
}
```
diff --git a/docs/_posts/2019-03-16-release-v0.10.0.markdown b/docs/_posts/2019-03-16-release-v0.10.0.markdown
new file mode 100644
index 0000000000..764244d7fb
--- /dev/null
+++ b/docs/_posts/2019-03-16-release-v0.10.0.markdown
@@ -0,0 +1,8 @@
+---
+layout: splash
+title: "New release of ArchUnit (v0.10.0)"
+date: 2019-03-16 10:00:00
+categories: news release
+---
+
+A new release of ArchUnit (v0.10.0) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v0.10.0 "ArchUnit v0.10.0 on GitHub").
\ No newline at end of file
diff --git a/docs/userguide/000_Index.adoc b/docs/userguide/000_Index.adoc
index 55fce11166..0ef75f4f57 100644
--- a/docs/userguide/000_Index.adoc
+++ b/docs/userguide/000_Index.adoc
@@ -7,7 +7,7 @@ ifndef::env-site[:toc: left]
:page-layout: splash
:page-description: {description}
:page-keywords: {keywords}
-:version: 0.9.3
+:version: 0.10.0
:icons: font
:source-highlighter: coderay
:prewrap!:
diff --git a/docs/userguide/002_Installation.adoc b/docs/userguide/002_Installation.adoc
index 539b8cbc75..e7a1aca29a 100644
--- a/docs/userguide/002_Installation.adoc
+++ b/docs/userguide/002_Installation.adoc
@@ -17,7 +17,7 @@ Maven Central:
com.tngtech.archunit
archunit-junit4
- 0.9.3
+ 0.10.0
test
----
@@ -26,7 +26,7 @@ Maven Central:
.build.gradle
----
dependencies {
- testCompile 'com.tngtech.archunit:archunit-junit4:0.9.3'
+ testCompile 'com.tngtech.archunit:archunit-junit4:0.10.0'
}
----
@@ -56,7 +56,7 @@ A typical Maven configuration could look like this:
com.tngtech.archunit
archunit-junit5-engine
- 0.9.3
+ 0.10.0
@@ -68,7 +68,7 @@ A typical Maven configuration could look like this:
com.tngtech.archunit
archunit-junit5-api
- 0.9.3
+ 0.10.0
test
@@ -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.3'
- testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.9.3'
+ testCompile 'com.tngtech.archunit:archunit-junit5-api:0.10.0'
+ testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.10.0'
}
----
@@ -103,7 +103,7 @@ context, include the core ArchUnit dependency from Maven Central:
com.tngtech.archunit
archunit
- 0.9.3
+ 0.10.0
test
----
@@ -112,7 +112,7 @@ context, include the core ArchUnit dependency from Maven Central:
.build.gradle
----
dependencies {
- testCompile 'com.tngtech.archunit:archunit:0.9.3'
+ testCompile 'com.tngtech.archunit:archunit:0.10.0'
}
----
diff --git a/docs/userguide/html/000_Index.html b/docs/userguide/html/000_Index.html
index 46449c37ed..86cb369cca 100644
--- a/docs/userguide/html/000_Index.html
+++ b/docs/userguide/html/000_Index.html
@@ -609,7 +609,7 @@
2.1. JUnit 4
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit4</artifactId>
- <version>0.9.3</version>
+ <version>0.10.0</version>
<scope>test</scope>
</dependency>
@@ -618,7 +618,7 @@ 2.1. JUnit 4
build.gradle
dependencies {
- testCompile 'com.tngtech.archunit:archunit-junit4:0.9.3'
+ testCompile 'com.tngtech.archunit:archunit-junit4:0.10.0'
}
@@ -650,7 +650,7 @@ 2.2. JUnit 5
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5-engine</artifactId>
- <version>0.9.3</version>
+ <version>0.10.0</version>
</dependency>
</dependencies>
</plugin>
@@ -662,7 +662,7 @@ 2.2. JUnit 5
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5-api</artifactId>
- <version>0.9.3</version>
+ <version>0.10.0</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -692,8 +692,8 @@ 2.2. JUnit 5
dependencies {
...
- testCompile 'com.tngtech.archunit:archunit-junit5-api:0.9.3'
- testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.9.3'
+ testCompile 'com.tngtech.archunit:archunit-junit5-api:0.10.0'
+ testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.10.0'
}
@@ -710,7 +710,7 @@