Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermocalvo committed Dec 28, 2020
1 parent e688f92 commit 3daaf9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To add a dependency on Result using [Maven](https://maven.apache.org/), use the
<dependency>
<groupId>com.leakyabstractions</groupId>
<artifactId>result</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
<type>pom</type>
</dependency>
```
Expand All @@ -39,15 +39,15 @@ internally:

```gradle
dependencies {
implementation 'com.leakyabstractions:result:0.1.0'
implementation 'com.leakyabstractions:result:0.1.1'
}
```

If you are building a library that will use `Result` type in its public API, you should use:

```gradle
dependencies {
api 'com.leakyabstractions:result:0.1.0'
api 'com.leakyabstractions:result:0.1.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

description = Result Library for Java
group = com.leakyabstractions
version = 0.1.0
version = 0.1.1

previousVersion = 0.1.0
homepage = https://dev.leakyabstractions.com/result/
Expand Down

0 comments on commit 3daaf9c

Please sign in to comment.