Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 5.0.0 - 2026-07-22

- **BREAKING**: Change some methods on `Database` to take `&self` instead of
`&mut self`.
[[#190](https://github.com/matrix-org/seshat/pull/190)]

- Fix panic that could occur in the writer thread when deleting or replacing events.
[[#195](https://github.com/matrix-org/seshat/pull/195)]

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["seshat-node"]

[workspace.package]
version = "4.3.0"
version = "5.0.0"
authors = ["Damir Jelić <poljar@termina.org.uk>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Seshat is released manually using `cargo publish` and `pnpm pack/publish`.
1. Create a release branch

```bash
git switch -c release-4.x.x
git switch -c release-5.x.x
```

2. Bump the version in the following files:
Expand Down
2 changes: 1 addition & 1 deletion seshat-node/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions seshat-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matrix-seshat"
version = "4.2.0"
version = "5.0.0"
authors = ["Damir Jelić <poljar@termina.org.uk>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -17,7 +17,7 @@ fs_extra = "1.3.0"
serde_json = "1.0.61"
neon-serde3 = "0.10.0"
uuid = "1.3.0"
seshat = "4.3.0"
seshat = "5.0.0"

[dependencies.neon]
version = "0.10.1"
Expand Down
2 changes: 1 addition & 1 deletion seshat-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "matrix-seshat",
"version": "4.3.0",
"version": "5.0.0",
"description": "A matrix message logger with full text search support",
"main": "index.js",
"author": "Damir Jelić <poljar@termina.org.uk>",
Expand Down