Skip to content

Commit

Permalink
prepare release 0.13.0
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Gafert <peter.gafert@tngtech.com>
  • Loading branch information
codecholeric committed Jan 10, 2020
1 parent 191377b commit a15d47a
Show file tree
Hide file tree
Showing 24 changed files with 32 additions and 30 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ framework.
###### Gradle

```
testCompile 'com.tngtech.archunit:archunit:0.12.0'
testCompile 'com.tngtech.archunit:archunit:0.13.0'
```

###### Maven
Expand All @@ -26,7 +26,7 @@ testCompile 'com.tngtech.archunit:archunit:0.12.0'
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ wrapper {

allprojects {
group = 'com.tngtech.archunit'
version = '0.13.0-SNAPSHOT'
version = '0.13.0'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion docs/_data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.0
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.13.0
- title: "About"
url: /about

4 changes: 2 additions & 2 deletions docs/_pages/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ ArchUnit can be obtained from Maven Central.
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
<scope>test</scope>
</dependency>
```

#### Gradle
```groovy
dependencies {
testCompile 'com.tngtech.archunit:archunit:0.12.0'
testCompile 'com.tngtech.archunit:archunit:0.13.0'
}
```

Expand Down
8 changes: 8 additions & 0 deletions docs/_posts/2020-01-10-release-v0.13.0.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: splash
title: "New release of ArchUnit (v0.13.0)"
date: 2020-01-10 12:00:00
categories: news release
---

A new release of ArchUnit (v0.13.0) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v0.13.0 "ArchUnit v0.13.0 on GitHub").
2 changes: 1 addition & 1 deletion docs/userguide/000_Index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ifndef::env-site[:toc: left]
:page-layout: splash
:page-description: {description}
:page-keywords: {keywords}
:version: 0.12.0
:version: 0.13.0
:icons: font
:source-highlighter: coderay
:prewrap!:
Expand Down
12 changes: 6 additions & 6 deletions docs/userguide/002_Installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Maven Central:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit4</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
<scope>test</scope>
</dependency>
----
Expand All @@ -26,7 +26,7 @@ Maven Central:
.build.gradle
----
dependencies {
testCompile 'com.tngtech.archunit:archunit-junit4:0.12.0'
testCompile 'com.tngtech.archunit:archunit-junit4:0.13.0'
}
----

Expand Down Expand Up @@ -56,7 +56,7 @@ A typical Maven configuration could look like this:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -74,7 +74,7 @@ The configuration for Gradle allows to clearly distinguish a test runtime scope:
----
dependencies {
...
testCompile 'com.tngtech.archunit:archunit-junit5:0.12.0'
testCompile 'com.tngtech.archunit:archunit-junit5:0.13.0'
}
----

Expand All @@ -89,7 +89,7 @@ context, include the core ArchUnit dependency from Maven Central:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
<scope>test</scope>
</dependency>
----
Expand All @@ -98,7 +98,7 @@ context, include the core ArchUnit dependency from Maven Central:
.build.gradle
----
dependencies {
testCompile 'com.tngtech.archunit:archunit:0.12.0'
testCompile 'com.tngtech.archunit:archunit:0.13.0'
}
----

Expand Down
28 changes: 11 additions & 17 deletions docs/userguide/html/000_Index.html
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
<pre class="highlightjs highlight nowrap"><code class="language-xml hljs" data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
&lt;artifactId&gt;archunit-junit4&lt;/artifactId&gt;
&lt;version&gt;0.12.0&lt;/version&gt;
&lt;version&gt;0.13.0&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;</code></pre>
</div>
Expand All @@ -620,7 +620,7 @@ <h3 id="_junit_4"><a class="anchor" href="#_junit_4"></a>2.1. JUnit 4</h3>
<div class="title">build.gradle</div>
<div class="content">
<pre class="highlightjs highlight nowrap"><code>dependencies {
testCompile 'com.tngtech.archunit:archunit-junit4:0.12.0'
testCompile 'com.tngtech.archunit:archunit-junit4:0.13.0'
}</code></pre>
</div>
</div>
Expand Down Expand Up @@ -651,14 +651,8 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
...
&lt;dependency&gt;
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
&lt;artifactId&gt;archunit-junit5-api&lt;/artifactId&gt;
&lt;version&gt;0.12.0&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
&lt;artifactId&gt;archunit-junit5-engine&lt;/artifactId&gt;
&lt;version&gt;0.12.0&lt;/version&gt;
&lt;artifactId&gt;archunit-junit5&lt;/artifactId&gt;
&lt;version&gt;0.13.0&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;
&lt;/dependencies&gt;
Expand Down Expand Up @@ -687,8 +681,7 @@ <h3 id="_junit_5"><a class="anchor" href="#_junit_5"></a>2.2. JUnit 5</h3>
<div class="content">
<pre class="highlightjs highlight nowrap"><code>dependencies {
...
testCompile 'com.tngtech.archunit:archunit-junit5-api:0.12.0'
testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.12.0'
testCompile 'com.tngtech.archunit:archunit-junit5:0.13.0'
}</code></pre>
</div>
</div>
Expand All @@ -705,7 +698,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
<pre class="highlightjs highlight nowrap"><code class="language-xml hljs" data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;com.tngtech.archunit&lt;/groupId&gt;
&lt;artifactId&gt;archunit&lt;/artifactId&gt;
&lt;version&gt;0.12.0&lt;/version&gt;
&lt;version&gt;0.13.0&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;</code></pre>
</div>
Expand All @@ -714,7 +707,7 @@ <h3 id="_other_test_frameworks"><a class="anchor" href="#_other_test_frameworks"
<div class="title">build.gradle</div>
<div class="content">
<pre class="highlightjs highlight nowrap"><code>dependencies {
testCompile 'com.tngtech.archunit:archunit:0.12.0'
testCompile 'com.tngtech.archunit:archunit:0.13.0'
}</code></pre>
</div>
</div>
Expand Down Expand Up @@ -1322,7 +1315,7 @@ <h4 id="_domain_objects_reflection_and_the_classpath"><a class="anchor" href="#_
</div>
<div class="listingblock">
<div class="content">
<pre class="highlightjs highlight nowrap"><code class="language-java hljs" data-lang="java">JavaAnnotation<?> annotation = javaClass.getAnnotationOfType("some.pkg.CustomAnnotation");
<pre class="highlightjs highlight nowrap"><code class="language-java hljs" data-lang="java">JavaAnnotation&lt;?&gt; annotation = javaClass.getAnnotationOfType("some.pkg.CustomAnnotation");
// result is untyped, since it might not be on the classpath (e.g. enums)
Object value = annotation.get("value");</code></pre>
</div>
Expand Down Expand Up @@ -2141,7 +2134,8 @@ <h5 id="_violation_store"><a class="anchor" href="#_violation_store"></a>Violati
<h5 id="_violation_line_matcher"><a class="anchor" href="#_violation_line_matcher"></a>Violation Line Matcher</h5>
<div class="paragraph">
<p>The <code>ViolationLineMatcher</code> compares lines from occurred violations with lines from the store.
The default implementation ignores line numbers and counts lines as equivalent when all other details match.
The default implementation ignores line numbers and numbers of anonymous classes or lambda expressions,
and counts lines as equivalent when all other details match.
A custom <code>ViolationLineMatcher</code> can again either be defined programmatically:</p>
</div>
<div class="listingblock">
Expand Down Expand Up @@ -2511,4 +2505,4 @@ <h3 id="_md5_sums_of_classes"><a class="anchor" href="#_md5_sums_of_classes"></a
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/highlight.min.js"></script>
<script>hljs.initHighlighting()</script>
</body>
</html>
</html>
Binary file modified docs/userguide/html/class-naming-deps.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/class-package-contain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/cycle-check.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/diamond-example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/domain-overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/import-vs-lang.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/inheritance-access-check.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/inheritance-annotation-check.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/inheritance-naming-check.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/layer-check.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/onion-architecture-check.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/package-deps-no-access.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/package-deps-only-access.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/resolution-example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/resolution-overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/userguide/html/simple-plantuml-archrule-example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a15d47a

Please sign in to comment.