Skip to content

Commit

Permalink
v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjg committed Nov 6, 2023
1 parent d08ebde commit a4abc6c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@ Documentation is mostly just [the API docs](https://www.javadoc.io/doc/org.autom
<dependency>
<groupId>org.automerge</groupId>
<artifactId>automerge</artifactId>
<version>0.0.4</version>
<version>0.0.5</version>
</dependency>
```

### Gradle (including android)

```kotlin
dependencies {
implementation group: 'org.automerge', name: 'automerge', version: "0.0.4"
implementation group: 'org.automerge', name: 'automerge', version: "0.0.5"
}
```

### Leiningen

```
:dependencies [[org.automerge/automerge "0.0.4"]]
:dependencies [[org.automerge/automerge "0.0.5"]]
```

## A quick example
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ publishing {
register<MavenPublication>("automerge") {
groupId = "org.automerge"
artifactId = "androidnative"
version = "0.0.4"
version = "0.0.5"
afterEvaluate {
from(components["release"])
}
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ spotless {
}
}

project.version = "0.0.4"
project.version = "0.0.5"

repositories {
mavenCentral()
Expand Down

0 comments on commit a4abc6c

Please sign in to comment.