Skip to content

Commit

Permalink
release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robstoll committed Jul 16, 2018
1 parent 9950a1d commit a28767a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[![EUPL](https://img.shields.io/badge/license-EUPL%201.2-brightgreen.svg)](https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12)
[![Build Status](https://travis-ci.org/robstoll/atrium.svg?branch=master)](https://travis-ci.org/robstoll/atrium)
[![Coverage](https://codecov.io/github/robstoll/atrium/coverage.svg?branch=master)](https://codecov.io/github/robstoll/atrium?branch=master)
[![Build Status](https://travis-ci.org/robstoll/atrium.svg?tag=v0.3.0)](https://travis-ci.org/robstoll/atrium/branches)
[![Coverage](https://codecov.io/github/robstoll/atrium/coverage.svg?tag=v0.3.0)](https://codecov.io/github/robstoll/atrium?tag=v0.3.0)

# Atrium
Atrium is an open-source assertion framework for Kotlin with a fluent API and supports different styles
Expand Down Expand Up @@ -30,7 +30,7 @@ Atrium can be retrieved from [bintray](https://bintray.com/robstoll/tutteli-jars
gradle:
```
buildscript {
ext { atrium_version='0.2.0' }
ext { atrium_version='0.3.0' }
}
dependencies {
Expand All @@ -45,19 +45,19 @@ maven:
<dependency>
<groupId>ch.tutteli</groupId>
<artifactId>atrium-api</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.tutteli</groupId>
<artifactId>atrium-impl-robstoll</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.tutteli</groupId>
<artifactId>atrium-assertions</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -84,7 +84,7 @@ If you still insist of using the provided assertion verbs, then add the followin
gradle:
```
buildscript {
ext { atrium_version='0.2.0' }
ext { atrium_version='0.3.0' }
}
dependencies {
Expand All @@ -100,25 +100,25 @@ maven:
<dependency>
<groupId>ch.tutteli</groupId>
<artifactId>atrium-api</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.tutteli</groupId>
<artifactId>atrium-impl-robstoll</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.tutteli</groupId>
<artifactId>atrium-assertions</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.tutteli</groupId>
<artifactId>atrium-verbs</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
atrium_version = '0.2.0'
ghPages_version = '0.2.0'
atrium_version = '0.3.0'
ghPages_version = '0.3.0'
kbox_version = '0.0.1'
kotlin_version = '1.1.2-5'
mockito_kotlin_version = '1.0.1'
Expand Down

0 comments on commit a28767a

Please sign in to comment.