Skip to content

Commit

Permalink
v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjg committed Jan 18, 2024
1 parent b642cc6 commit a7bdcbd
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## 0.0.7

* Update the rust `automerge` library to 0.5.7. This introduces some performance
improvements to the sync protocol. No user facing or network-incompatible
changes
* Add `Read.getMarksAtIndex` to lookup the marks for a particular index in a
text sequence
* Add `Read.getObjectType` which returns the type of object an object ID refers
to
* Add support for cursors, which are stable references to a position in a
sequence
* Make `PatchLog` a public type
* Fix a bug where passing a null object ID to some methods would crash the JVM

## 0.0.6

A bump purely to make some packaging machinery happy. No changes

## 0.0.5

* * Make AmValue.Counter.getValue() return long

## 0.0.4

* Upgrade to automerge rust 0.5.1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.6</version>
<version>0.0.7</version>
</dependency>
```

Expand All @@ -30,7 +30,7 @@ dependencies {
### Leiningen

```
:dependencies [[org.automerge/automerge "0.0.6"]]
:dependencies [[org.automerge/automerge "0.0.7"]]
```

## 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.6"
version = "0.0.7"
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.6"
project.version = "0.0.7"

repositories {
mavenCentral()
Expand Down

0 comments on commit a7bdcbd

Please sign in to comment.