Skip to content

Commit

Permalink
Release version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tvinke committed Aug 2, 2017
1 parent 82711e2 commit ff8b2dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Travis CI](https://img.shields.io/travis/tvinke/bulletproof.svg)](https://travis-ci.org/tvinke/bulletproof)
[![Maven Central](https://img.shields.io/maven-central/v/com.github.tvinke/bulletproof.svg)](http://repo1.maven.org/maven2/com/github/tvinke/bulletproof/0.1/bulletproof-0.1.jar)
[![GitHub release](https://img.shields.io/github/tag/tvinke/bulletproof.svg)](https://github.com/tvinke/bulletproof/releases/tag/v0.1)
[![Maven Central](https://img.shields.io/maven-central/v/com.github.tvinke/bulletproof.svg)](http://repo1.maven.org/maven2/com/github/tvinke/bulletproof/0.2/bulletproof-0.2.jar)
[![GitHub release](https://img.shields.io/github/tag/tvinke/bulletproof.svg)](https://github.com/tvinke/bulletproof/releases/tag/v0.2)
# Bulletproof
*Groovy AST transformations, such as @ValueObject and @NonNull, which makes constructing an instance more bullet-proof.*

Expand Down Expand Up @@ -30,26 +30,26 @@ Add the bulletproof jar to the classpath in your preferred way and you're set.

### Grape
```groovy
@Grab('com.github.tvinke:bulletproof:0.1')
@Grab('com.github.tvinke:bulletproof:0.2')
```

### Gradle
```groovy
compile group: 'com.github.tvinke', name: 'bulletproof', version: '0.1'
compile group: 'com.github.tvinke', name: 'bulletproof', version: '0.2'
```

### Maven
```xml
<dependency>
<groupId>com.github.tvinke</groupId>
<artifactId>bulletproof</artifactId>
<version>0.1</version>
<version>0.2</version>
</dependency>
```

## Annotations

Consult the [bulletproof 0.1 Groovydocs](http://tvinke.github.io/bulletproof/v0.1/groovydoc/) for complete API information.
Consult the [bulletproof 0.2 Groovydocs](http://tvinke.github.io/bulletproof/v0.2/groovydoc/) for complete API information.

### NonNull

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apply plugin: 'project-report'

group = 'com.github.tvinke'
archivesBaseName = 'bulletproof'
version = '0.2-SNAPSHOT'
version = '0.2'

jar.archiveName = "bulletproof-${version}.jar"

Expand Down

0 comments on commit ff8b2dc

Please sign in to comment.