From bfbf0477f56188ea92077a08e9e28cba26d474fa Mon Sep 17 00:00:00 2001 From: codecholeric Date: Mon, 21 Nov 2022 18:10:16 +0000 Subject: [PATCH] prepare release 1.0.1 Signed-off-by: codecholeric --- README.md | 4 ++-- docs/_data/navigation.yml | 2 +- docs/_pages/getting-started.md | 4 ++-- docs/_posts/2022-11-21-release-v1.0.1.markdown | 8 ++++++++ docs/userguide/html/000_Index.html | 16 ++++++++-------- gradle.properties | 2 +- 6 files changed, 22 insertions(+), 14 deletions(-) create mode 100644 docs/_posts/2022-11-21-release-v1.0.1.markdown diff --git a/README.md b/README.md index 17e510de9a..9d4fac2cb4 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ framework. ###### Gradle ``` -testImplementation 'com.tngtech.archunit:archunit:1.0.0' +testImplementation 'com.tngtech.archunit:archunit:1.0.1' ``` ###### Maven @@ -26,7 +26,7 @@ testImplementation 'com.tngtech.archunit:archunit:1.0.0' com.tngtech.archunit archunit - 1.0.0 + 1.0.1 test ``` diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index ede1acac47..10b3ded925 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.0.0 + url: https://javadoc.io/doc/com.tngtech.archunit/archunit/1.0.1 - title: "About" url: /about diff --git a/docs/_pages/getting-started.md b/docs/_pages/getting-started.md index aff77339ec..fcc79bcd43 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.0.0 + 1.0.1 test ``` @@ -23,7 +23,7 @@ ArchUnit can be obtained from Maven Central. #### Gradle ```groovy dependencies { - testImplementation 'com.tngtech.archunit:archunit:1.0.0' + testImplementation 'com.tngtech.archunit:archunit:1.0.1' } ``` diff --git a/docs/_posts/2022-11-21-release-v1.0.1.markdown b/docs/_posts/2022-11-21-release-v1.0.1.markdown new file mode 100644 index 0000000000..92e4adeef6 --- /dev/null +++ b/docs/_posts/2022-11-21-release-v1.0.1.markdown @@ -0,0 +1,8 @@ +--- +layout: splash +title: "New release of ArchUnit (v1.0.1)" +date: 2022-11-21 12:00:00 +categories: news release +--- + +A new release of ArchUnit (v1.0.1) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v1.0.1 "ArchUnit v1.0.1 on GitHub"). diff --git a/docs/userguide/html/000_Index.html b/docs/userguide/html/000_Index.html index 6fb131bc3b..4137be7316 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.0.0</version>
+    <version>1.0.1</version>
     <scope>test</scope>
 </dependency>
@@ -656,7 +656,7 @@

2.2. JUnit 5

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

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

build.gradle
dependencies {
-   testImplementation 'com.tngtech.archunit:archunit:1.0.0'
+   testImplementation 'com.tngtech.archunit:archunit:1.0.1'
 }
@@ -1462,7 +1462,7 @@

DescribedPredicate<JavaClass> haveAFieldAnnotatedWithPayload = new DescribedPredicate<JavaClass>("have a field annotated with @Payload"){ @Override - public boolean apply(JavaClass input) { + public boolean test(JavaClass input) { boolean someFieldAnnotatedWithPayload = // iterate fields and check for @Payload return someFieldAnnotatedWithPayload; } diff --git a/gradle.properties b/gradle.properties index 91abd3ef02..1ac7130795 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.parallel=true archunit.group=com.tngtech.archunit -archunit.version=1.0.1-SNAPSHOT +archunit.version=1.0.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