From 17ced0833324760dfdf49aaa07ea00c1fbee63aa Mon Sep 17 00:00:00 2001 From: codecholeric Date: Sun, 3 Dec 2023 23:07:14 +0000 Subject: [PATCH] prepare release 1.2.1 Signed-off-by: codecholeric --- README.md | 4 ++-- docs/_data/navigation.yml | 2 +- docs/_pages/getting-started.md | 4 ++-- docs/_posts/2023-12-03-release-v1.2.1.markdown | 8 ++++++++ docs/userguide/html/000_Index.html | 14 +++++++------- gradle.properties | 2 +- 6 files changed, 21 insertions(+), 13 deletions(-) create mode 100644 docs/_posts/2023-12-03-release-v1.2.1.markdown diff --git a/README.md b/README.md index 0e6936520..28a3baf53 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ framework. ###### Gradle ``` -testImplementation 'com.tngtech.archunit:archunit:1.2.0' +testImplementation 'com.tngtech.archunit:archunit:1.2.1' ``` ###### Maven @@ -26,7 +26,7 @@ testImplementation 'com.tngtech.archunit:archunit:1.2.0' com.tngtech.archunit archunit - 1.2.0 + 1.2.1 test ``` diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index 06ec00f6a..131d75b01 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.2.0 + url: https://javadoc.io/doc/com.tngtech.archunit/archunit/1.2.1 - title: "About" url: /about diff --git a/docs/_pages/getting-started.md b/docs/_pages/getting-started.md index e5121b462..c0920c3b1 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.2.0 + 1.2.1 test ``` @@ -23,7 +23,7 @@ ArchUnit can be obtained from Maven Central. #### Gradle ```groovy dependencies { - testImplementation 'com.tngtech.archunit:archunit:1.2.0' + testImplementation 'com.tngtech.archunit:archunit:1.2.1' } ``` diff --git a/docs/_posts/2023-12-03-release-v1.2.1.markdown b/docs/_posts/2023-12-03-release-v1.2.1.markdown new file mode 100644 index 000000000..55772b123 --- /dev/null +++ b/docs/_posts/2023-12-03-release-v1.2.1.markdown @@ -0,0 +1,8 @@ +--- +layout: splash +title: "New release of ArchUnit (v1.2.1)" +date: 2023-12-03 12:00:00 +categories: news release +--- + +A new release of ArchUnit (v1.2.1) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v1.2.1 "ArchUnit v1.2.1 on GitHub"). diff --git a/docs/userguide/html/000_Index.html b/docs/userguide/html/000_Index.html index 0586bac15..9d98130b2 100644 --- a/docs/userguide/html/000_Index.html +++ b/docs/userguide/html/000_Index.html @@ -449,7 +449,7 @@ @@ -648,7 +648,7 @@

2.2. JUnit 5

<dependency>
     <groupId>com.tngtech.archunit</groupId>
     <artifactId>archunit-junit5</artifactId>
-    <version>1.2.0</version>
+    <version>1.2.1</version>
     <scope>test</scope>
 </dependency>
@@ -657,7 +657,7 @@

2.2. JUnit 5

build.gradle
dependencies {
-    testImplementation 'com.tngtech.archunit:archunit-junit5:1.2.0'
+    testImplementation 'com.tngtech.archunit:archunit-junit5:1.2.1'
 }
@@ -674,7 +674,7 @@

<dependency> <groupId>com.tngtech.archunit</groupId> <artifactId>archunit</artifactId> - <version>1.2.0</version> + <version>1.2.1</version> <scope>test</scope> </dependency> @@ -683,7 +683,7 @@

build.gradle
dependencies {
-   testImplementation 'com.tngtech.archunit:archunit:1.2.0'
+   testImplementation 'com.tngtech.archunit:archunit:1.2.1'
 }
diff --git a/gradle.properties b/gradle.properties index 0198de386..8e1ec9c32 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.parallel=true archunit.group=com.tngtech.archunit -archunit.version=1.2.1-SNAPSHOT +archunit.version=1.2.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