diff --git a/README.md b/README.md index 1b1ad037ad..c52dc2062d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ framework. ###### Gradle ``` -testCompile 'com.tngtech.archunit:archunit:0.10.2' +testCompile 'com.tngtech.archunit:archunit:0.11.0' ``` ###### Maven @@ -26,7 +26,7 @@ testCompile 'com.tngtech.archunit:archunit:0.10.2' com.tngtech.archunit archunit - 0.10.2 + 0.11.0 test ``` diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index 87634f4b34..a358aa457e 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.10.2 + url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.11.0 - title: "About" url: /about diff --git a/docs/_pages/getting-started.md b/docs/_pages/getting-started.md index b708fa0d01..526da4f4d7 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.10.2 + 0.11.0 test ``` @@ -23,7 +23,7 @@ ArchUnit can be obtained from Maven Central. #### Gradle ```groovy dependencies { - testCompile 'com.tngtech.archunit:archunit:0.10.2' + testCompile 'com.tngtech.archunit:archunit:0.11.0' } ``` diff --git a/docs/_posts/2019-07-29-release-v0.11.0.markdown b/docs/_posts/2019-07-29-release-v0.11.0.markdown new file mode 100644 index 0000000000..c3c38a87e3 --- /dev/null +++ b/docs/_posts/2019-07-29-release-v0.11.0.markdown @@ -0,0 +1,8 @@ +--- +layout: splash +title: "New release of ArchUnit (v0.11.0)" +date: 2019-07-29 12:00:00 +categories: news release +--- + +A new release of ArchUnit (v0.11.0) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v0.11.0 "ArchUnit v0.11.0 on GitHub"). \ No newline at end of file diff --git a/docs/userguide/000_Index.adoc b/docs/userguide/000_Index.adoc index d60367fbe0..baaec9c328 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.10.2 +:version: 0.11.0 :icons: font :source-highlighter: coderay :prewrap!: diff --git a/docs/userguide/002_Installation.adoc b/docs/userguide/002_Installation.adoc index 9260e95cc5..0b72af3f20 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.10.2 + 0.11.0 test ---- @@ -26,7 +26,7 @@ Maven Central: .build.gradle ---- dependencies { - testCompile 'com.tngtech.archunit:archunit-junit4:0.10.2' + testCompile 'com.tngtech.archunit:archunit-junit4:0.11.0' } ---- @@ -56,13 +56,13 @@ A typical Maven configuration could look like this: com.tngtech.archunit archunit-junit5-api - 0.10.2 + 0.11.0 test com.tngtech.archunit archunit-junit5-engine - 0.10.2 + 0.11.0 test @@ -80,8 +80,8 @@ The configuration for Gradle allows to clearly distinguish a test runtime scope: ---- dependencies { ... - testCompile 'com.tngtech.archunit:archunit-junit5-api:0.10.2' - testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.10.2' + testCompile 'com.tngtech.archunit:archunit-junit5-api:0.11.0' + testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.11.0' } ---- @@ -96,7 +96,7 @@ context, include the core ArchUnit dependency from Maven Central: com.tngtech.archunit archunit - 0.10.2 + 0.11.0 test ---- @@ -105,7 +105,7 @@ context, include the core ArchUnit dependency from Maven Central: .build.gradle ---- dependencies { - testCompile 'com.tngtech.archunit:archunit:0.10.2' + testCompile 'com.tngtech.archunit:archunit:0.11.0' } ---- diff --git a/docs/userguide/html/000_Index.html b/docs/userguide/html/000_Index.html index 59b140d069..1093d04958 100644 --- a/docs/userguide/html/000_Index.html +++ b/docs/userguide/html/000_Index.html @@ -610,7 +610,7 @@

2.1. JUnit 4

<dependency>
     <groupId>com.tngtech.archunit</groupId>
     <artifactId>archunit-junit4</artifactId>
-    <version>0.10.2</version>
+    <version>0.11.0</version>
     <scope>test</scope>
 </dependency>
@@ -619,7 +619,7 @@

2.1. JUnit 4

build.gradle
dependencies {
-    testCompile 'com.tngtech.archunit:archunit-junit4:0.10.2'
+    testCompile 'com.tngtech.archunit:archunit-junit4:0.11.0'
 }
@@ -651,13 +651,13 @@

2.2. JUnit 5

<dependency> <groupId>com.tngtech.archunit</groupId> <artifactId>archunit-junit5-api</artifactId> - <version>0.10.2</version> + <version>0.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.archunit</groupId> <artifactId>archunit-junit5-engine</artifactId> - <version>0.10.2</version> + <version>0.11.0</version> <scope>test</scope> </dependency> </dependencies> @@ -686,8 +686,8 @@

2.2. JUnit 5

dependencies {
     ...
-    testCompile 'com.tngtech.archunit:archunit-junit5-api:0.10.2'
-    testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.10.2'
+    testCompile 'com.tngtech.archunit:archunit-junit5-api:0.11.0'
+    testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.11.0'
 }
@@ -704,7 +704,7 @@

<dependency> <groupId>com.tngtech.archunit</groupId> <artifactId>archunit</artifactId> - <version>0.10.2</version> + <version>0.11.0</version> <scope>test</scope> </dependency> @@ -713,7 +713,7 @@

build.gradle
dependencies {
-   testCompile 'com.tngtech.archunit:archunit:0.10.2'
+   testCompile 'com.tngtech.archunit:archunit:0.11.0'
 }
diff --git a/docs/userguide/html/class-naming-deps.png b/docs/userguide/html/class-naming-deps.png index 5486000056..4f6cfc2487 100644 Binary files a/docs/userguide/html/class-naming-deps.png and b/docs/userguide/html/class-naming-deps.png differ diff --git a/docs/userguide/html/class-package-contain.png b/docs/userguide/html/class-package-contain.png index 8f3c3867b2..cc1f964289 100644 Binary files a/docs/userguide/html/class-package-contain.png and b/docs/userguide/html/class-package-contain.png differ diff --git a/docs/userguide/html/cycle-check.png b/docs/userguide/html/cycle-check.png index 599ea55b6a..7926ee4ab0 100644 Binary files a/docs/userguide/html/cycle-check.png and b/docs/userguide/html/cycle-check.png differ diff --git a/docs/userguide/html/diamond-example.png b/docs/userguide/html/diamond-example.png index f532ae601c..c182bd1ffd 100644 Binary files a/docs/userguide/html/diamond-example.png and b/docs/userguide/html/diamond-example.png differ diff --git a/docs/userguide/html/domain-overview.png b/docs/userguide/html/domain-overview.png index beb6bc4db1..436a97d589 100644 Binary files a/docs/userguide/html/domain-overview.png and b/docs/userguide/html/domain-overview.png differ diff --git a/docs/userguide/html/import-vs-lang.png b/docs/userguide/html/import-vs-lang.png index bf9ee99cb6..cfd477e4a4 100644 Binary files a/docs/userguide/html/import-vs-lang.png and b/docs/userguide/html/import-vs-lang.png differ diff --git a/docs/userguide/html/inheritance-access-check.png b/docs/userguide/html/inheritance-access-check.png index dbdbee2b64..4685d5d82a 100644 Binary files a/docs/userguide/html/inheritance-access-check.png and b/docs/userguide/html/inheritance-access-check.png differ diff --git a/docs/userguide/html/inheritance-annotation-check.png b/docs/userguide/html/inheritance-annotation-check.png index bdd5fb85e1..319a8c33a4 100644 Binary files a/docs/userguide/html/inheritance-annotation-check.png and b/docs/userguide/html/inheritance-annotation-check.png differ diff --git a/docs/userguide/html/inheritance-naming-check.png b/docs/userguide/html/inheritance-naming-check.png index 57eb2cc75b..618fa5196e 100644 Binary files a/docs/userguide/html/inheritance-naming-check.png and b/docs/userguide/html/inheritance-naming-check.png differ diff --git a/docs/userguide/html/layer-check.png b/docs/userguide/html/layer-check.png index 3aca9b92d2..35208808a2 100644 Binary files a/docs/userguide/html/layer-check.png and b/docs/userguide/html/layer-check.png differ diff --git a/docs/userguide/html/onion-architecture-check.png b/docs/userguide/html/onion-architecture-check.png index f255db5189..b897a711cf 100644 Binary files a/docs/userguide/html/onion-architecture-check.png and b/docs/userguide/html/onion-architecture-check.png differ diff --git a/docs/userguide/html/package-deps-no-access.png b/docs/userguide/html/package-deps-no-access.png index edb7548c6b..947af55ec9 100644 Binary files a/docs/userguide/html/package-deps-no-access.png and b/docs/userguide/html/package-deps-no-access.png differ diff --git a/docs/userguide/html/package-deps-only-access.png b/docs/userguide/html/package-deps-only-access.png index 1f40dc0ddf..9b04c29d8e 100644 Binary files a/docs/userguide/html/package-deps-only-access.png and b/docs/userguide/html/package-deps-only-access.png differ diff --git a/docs/userguide/html/resolution-example.png b/docs/userguide/html/resolution-example.png index 8315f14815..ea2c4c4476 100644 Binary files a/docs/userguide/html/resolution-example.png and b/docs/userguide/html/resolution-example.png differ diff --git a/docs/userguide/html/resolution-overview.png b/docs/userguide/html/resolution-overview.png index 37e94891da..604c613f71 100644 Binary files a/docs/userguide/html/resolution-overview.png and b/docs/userguide/html/resolution-overview.png differ diff --git a/docs/userguide/html/simple-plantuml-archrule-example.png b/docs/userguide/html/simple-plantuml-archrule-example.png index c0df7e2e0d..0d09535189 100644 Binary files a/docs/userguide/html/simple-plantuml-archrule-example.png and b/docs/userguide/html/simple-plantuml-archrule-example.png differ