Skip to content

Commit

Permalink
Prepare release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
codecholeric committed Nov 26, 2017
1 parent 573baa4 commit 01079d5
Show file tree
Hide file tree
Showing 12 changed files with 3,001 additions and 12,587 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If you want to dive right into the first ArchUnit test using JUnit, follow these
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit</artifactId>
<version>0.4.0</version>
<version>0.5.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 @@ -94,7 +94,7 @@ task wrapper(type: Wrapper) {

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

description = 'A Java architecture test library, to specify and assert architecture rules in plain Java'
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,5 +8,5 @@ main:
- title: "User Guide"
url: /userguide/html/000_Index.html
- title: "API"
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.4.0
url: https://javadoc.io/doc/com.tngtech.archunit/archunit/0.5.0

2 changes: 1 addition & 1 deletion docs/_pages/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ If you want to dive right into the first ArchUnit test using JUnit, follow these
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
</dependency>
```
## Create a JUnit test
Expand Down
8 changes: 8 additions & 0 deletions docs/_posts/2017-11-26-v0.5.0-released.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: splash
title: "Second release of ArchUnit (v0.5.0)"
date: 2017-11-26 21:45:00
categories: news release
---

A new release of ArchUnit (v0.5.0) is out. For details see [the release on GitHub](https://github.com/TNG/ArchUnit/releases/tag/v0.5.0 "ArchUnit v0.5.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 @@ -6,7 +6,7 @@ ifndef::env-site[:toc: left]
:page-layout: splash
:page-description: {description}
:page-keywords: {keywords}
:version: 0.5.0-SNAPSHOT
:version: 0.5.0
:icons: font
:source-highlighter: coderay
:prewrap!:
Expand Down
8 changes: 4 additions & 4 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-junit</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
<scope>test</scope>
</dependency>
----
Expand All @@ -26,7 +26,7 @@ Maven Central:
.build.gradle
----
dependencies {
testCompile 'com.tngtech.archunit:archunit-junit:0.4.0'
testCompile 'com.tngtech.archunit:archunit-junit:0.5.0'
}
----

Expand All @@ -41,7 +41,7 @@ context, include the core ArchUnit dependency from Maven Central:
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
<scope>test</scope>
</dependency>
----
Expand All @@ -50,6 +50,6 @@ context, include the core ArchUnit dependency from Maven Central:
.build.gradle
----
dependencies {
testCompile 'com.tngtech.archunit:archunit:0.4.0'
testCompile 'com.tngtech.archunit:archunit:0.5.0'
}
----
Loading

0 comments on commit 01079d5

Please sign in to comment.