diff --git a/README.md b/README.md index 0651574ea..263170dcb 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ framework. ###### Gradle ``` -testImplementation 'com.tngtech.archunit:archunit:1.1.0' +testImplementation 'com.tngtech.archunit:archunit:1.1.1' ``` ###### Maven @@ -26,7 +26,7 @@ testImplementation 'com.tngtech.archunit:archunit:1.1.0' com.tngtech.archunit archunit - 1.1.0 + 1.1.1 test ``` diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index 7b3fa472a..9c1a12db2 100644 --- a/docs/_data/navigation.yml +++ b/docs/_data/navigation.yml @@ -10,6 +10,6 @@ main: - title: "User Guide" url: /userguide/html/000_Index.html - title: "API" - url: https://javadoc.io/doc/com.tngtech.archunit/archunit/1.1.0 + url: https://javadoc.io/doc/com.tngtech.archunit/archunit/1.1.1 - title: "About" url: /about diff --git a/docs/_pages/getting-started.md b/docs/_pages/getting-started.md index 2e4060e2e..21b8138d1 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 - 1.1.0 + 1.1.1 test ``` @@ -23,7 +23,7 @@ ArchUnit can be obtained from Maven Central. #### Gradle ```groovy dependencies { - testImplementation 'com.tngtech.archunit:archunit:1.1.0' + testImplementation 'com.tngtech.archunit:archunit:1.1.1' } ``` diff --git a/docs/_posts/2024-04-25-release-v1.1.1.markdown b/docs/_posts/2024-04-25-release-v1.1.1.markdown new file mode 100644 index 000000000..b9e30c129 --- /dev/null +++ b/docs/_posts/2024-04-25-release-v1.1.1.markdown @@ -0,0 +1,8 @@ +--- +layout: splash +title: "New release of ArchUnit (v1.1.1)" +date: 2024-04-25 12:00:00 +categories: news release +--- + +A new release of ArchUnit (v1.1.1) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v1.1.1 "ArchUnit v1.1.1 on GitHub"). diff --git a/docs/userguide/html/000_Index.html b/docs/userguide/html/000_Index.html index eb148fe57..84d77b256 100644 --- a/docs/userguide/html/000_Index.html +++ b/docs/userguide/html/000_Index.html @@ -449,7 +449,7 @@ @@ -647,7 +647,7 @@

2.2. JUnit 5

<dependency>
     <groupId>com.tngtech.archunit</groupId>
     <artifactId>archunit-junit5</artifactId>
-    <version>1.1.0</version>
+    <version>1.1.1</version>
     <scope>test</scope>
 </dependency>
@@ -656,7 +656,7 @@

2.2. JUnit 5

build.gradle
dependencies {
-    testImplementation 'com.tngtech.archunit:archunit-junit5:1.1.0'
+    testImplementation 'com.tngtech.archunit:archunit-junit5:1.1.1'
 }
@@ -673,7 +673,7 @@

<dependency> <groupId>com.tngtech.archunit</groupId> <artifactId>archunit</artifactId> - <version>1.1.0</version> + <version>1.1.1</version> <scope>test</scope> </dependency> @@ -682,7 +682,7 @@

build.gradle
dependencies {
-   testImplementation 'com.tngtech.archunit:archunit:1.1.0'
+   testImplementation 'com.tngtech.archunit:archunit:1.1.1'
 }
diff --git a/gradle.properties b/gradle.properties index f481b9533..8e87b5a55 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.parallel=true archunit.group=com.tngtech.archunit -archunit.version=1.1.1-SNAPSHOT +archunit.version=1.1.1 org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED