diff --git a/README.md b/README.md index a8d3a2b11e..1e53109207 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ framework. ###### Gradle ``` -testImplementation 'com.tngtech.archunit:archunit:0.23.1' +testImplementation 'com.tngtech.archunit:archunit:1.0.0-rc1' ``` ###### Maven @@ -26,7 +26,7 @@ testImplementation 'com.tngtech.archunit:archunit:0.23.1' com.tngtech.archunit archunit - 0.23.1 + 1.0.0-rc1 test ``` diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index 2ca0d8bfe1..91f9d3b57b 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/0.23.1 + url: https://javadoc.io/doc/com.tngtech.archunit/archunit/1.0.0-rc1 - title: "About" url: /about diff --git a/docs/_pages/getting-started.md b/docs/_pages/getting-started.md index 677f21bb65..1fd0ea36a7 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.23.1 + 1.0.0-rc1 test ``` @@ -23,7 +23,7 @@ ArchUnit can be obtained from Maven Central. #### Gradle ```groovy dependencies { - testImplementation 'com.tngtech.archunit:archunit:0.23.1' + testImplementation 'com.tngtech.archunit:archunit:1.0.0-rc1' } ``` diff --git a/docs/_posts/2022-07-13-release-v1.0.0-rc1.markdown b/docs/_posts/2022-07-13-release-v1.0.0-rc1.markdown new file mode 100644 index 0000000000..23e4d7366f --- /dev/null +++ b/docs/_posts/2022-07-13-release-v1.0.0-rc1.markdown @@ -0,0 +1,8 @@ +--- +layout: splash +title: "New release of ArchUnit (v1.0.0-rc1)" +date: 2022-07-13 12:00:00 +categories: news release +--- + +A new release of ArchUnit (v1.0.0-rc1) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v1.0.0-rc1 "ArchUnit v1.0.0-rc1 on GitHub"). diff --git a/docs/userguide/html/000_Index.html b/docs/userguide/html/000_Index.html index 9ab694ea59..823d4aa679 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>0.23.1</version>
+    <version>1.0.0-rc1</version>
     <scope>test</scope>
 </dependency>
@@ -656,7 +656,7 @@

2.2. JUnit 5

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

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

build.gradle
dependencies {
-   testImplementation 'com.tngtech.archunit:archunit:0.23.1'
+   testImplementation 'com.tngtech.archunit:archunit:1.0.0-rc1'
 }
@@ -947,6 +947,7 @@

4.6. Layer Ch
layeredArchitecture()
+    .consideringAllDependencies()
     .layer("Controller").definedBy("..controller..")
     .layer("Service").definedBy("..service..")
     .layer("Persistence").definedBy("..persistence..")
diff --git a/gradle.properties b/gradle.properties
index bd4f5387d0..6a22eb1c9a 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
 org.gradle.parallel=true
 archunit.group=com.tngtech.archunit
-archunit.version=1.0.0-rc1-SNAPSHOT
+archunit.version=1.0.0-rc1
 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