Skip to content

Commit

Permalink
release v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
noib3 committed Jan 31, 2024
1 parent 45ed659 commit 0e0bbaa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## [0.4.1] - Jan 31 2024
## [0.4.2] - Jan 31 2024

### Added

Expand Down Expand Up @@ -59,8 +59,8 @@
- fixed a bug that would cause `Replica::decode()` to fail if it was encoded
on a machine with a different pointer size (#1);

[Unreleased]: https://github.com/nomad/cola/compare/v0.4.1...HEAD
[0.4.1]: https://github.com/nomad/cola/compare/v0.4.0...v0.4.1
[Unreleased]: https://github.com/nomad/cola/compare/v0.4.2...HEAD
[0.4.2]: https://github.com/nomad/cola/compare/v0.4.0...v0.4.2
[0.4.0]: https://github.com/nomad/cola/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/nomad/cola/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/nomad/cola/compare/v0.2.0...v0.2.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cola"
version = "0.4.1"
version = "0.4.2"
edition = "2021"
authors = ["Riccardo Mazzarini <[email protected]>"]
description = "A text CRDT for real-time collaborative editing"
Expand Down
2 changes: 1 addition & 1 deletion src/deletion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl Deletion {
/// assert_eq!(deletion.deleted_by(), replica1.id());
/// ```
#[inline(always)]
pub(crate) fn deleted_by(&self) -> ReplicaId {
pub fn deleted_by(&self) -> ReplicaId {
self.version_map.this_id()
}

Expand Down

0 comments on commit 0e0bbaa

Please sign in to comment.