Skip to content

Commit 3df82e9

Browse files
committed
Bump the version to 25.0.0-dev.21.
1 parent 5a9f300 commit 3df82e9

4 files changed

Lines changed: 44 additions & 35 deletions

File tree

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 25.0.0-dev.21 - 2025-08-06
9+
### Added
10+
- Implement time-to-live (TTL) options for snapshots (#28 by @SamuelSarle)
11+
### Changed
12+
- Split installer to installer and registry (#29 by @SamuelSarle)
13+
### Fixed
14+
- Set 0444 file permissions for snapshot files (#27 by @SamuelSarle)
15+
- Ensure JSON manifests are newline-terminated (by @artob)
16+
817
## 25.0.0-dev.20 - 2025-08-02
918
### Changed
1019
- Make enabled module symlinks relative (#26 by @SamuelSarle)

Cargo.toml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ default-members = [
1616
resolver = "2"
1717

1818
[workspace.package]
19-
version = "25.0.0-dev.20"
19+
version = "25.0.0-dev.21"
2020
authors = ["ASIMOV Systems <support@asimov.systems>"]
2121
edition = "2024"
2222
rust-version = "1.85"
@@ -31,37 +31,37 @@ categories = []
3131
publish = true
3232

3333
[workspace.dependencies]
34-
asimov-account = "25.0.0-dev.20"
35-
asimov-agent = "25.0.0-dev.20"
36-
asimov-cache = "25.0.0-dev.20"
37-
asimov-config = "25.0.0-dev.20"
38-
asimov-construct = "25.0.0-dev.20"
39-
asimov-core = "25.0.0-dev.20"
40-
asimov-dataset = "25.0.0-dev.20"
41-
asimov-directory = "25.0.0-dev.20"
42-
asimov-env = "25.0.0-dev.20"
43-
asimov-flow = "25.0.0-dev.20"
44-
asimov-graph = "25.0.0-dev.20"
45-
asimov-installer = "25.0.0-dev.20"
46-
asimov-ledger = "25.0.0-dev.20"
47-
asimov-module = "25.0.0-dev.20"
48-
asimov-ontology = "25.0.0-dev.20"
49-
asimov-patterns = "25.0.0-dev.20"
50-
asimov-platform = "25.0.0-dev.20"
51-
asimov-prompt = "25.0.0-dev.20"
52-
asimov-protocol = "25.0.0-dev.20"
53-
asimov-proxy = "25.0.0-dev.20"
54-
asimov-registry = "25.0.0-dev.20"
55-
asimov-repository = "25.0.0-dev.20"
56-
asimov-runner = "25.0.0-dev.20"
57-
asimov-runtime = "25.0.0-dev.20"
58-
asimov-sdk = "25.0.0-dev.20"
59-
asimov-server = "25.0.0-dev.20"
60-
asimov-snapshot = "25.0.0-dev.20"
61-
asimov-sys = "25.0.0-dev.20"
62-
asimov-token = "25.0.0-dev.20"
63-
asimov-universe = "25.0.0-dev.20"
64-
asimov-vault = "25.0.0-dev.20"
34+
asimov-account = "25.0.0-dev.21"
35+
asimov-agent = "25.0.0-dev.21"
36+
asimov-cache = "25.0.0-dev.21"
37+
asimov-config = "25.0.0-dev.21"
38+
asimov-construct = "25.0.0-dev.21"
39+
asimov-core = "25.0.0-dev.21"
40+
asimov-dataset = "25.0.0-dev.21"
41+
asimov-directory = "25.0.0-dev.21"
42+
asimov-env = "25.0.0-dev.21"
43+
asimov-flow = "25.0.0-dev.21"
44+
asimov-graph = "25.0.0-dev.21"
45+
asimov-installer = "25.0.0-dev.21"
46+
asimov-ledger = "25.0.0-dev.21"
47+
asimov-module = "25.0.0-dev.21"
48+
asimov-ontology = "25.0.0-dev.21"
49+
asimov-patterns = "25.0.0-dev.21"
50+
asimov-platform = "25.0.0-dev.21"
51+
asimov-prompt = "25.0.0-dev.21"
52+
asimov-protocol = "25.0.0-dev.21"
53+
asimov-proxy = "25.0.0-dev.21"
54+
asimov-registry = "25.0.0-dev.21"
55+
asimov-repository = "25.0.0-dev.21"
56+
asimov-runner = "25.0.0-dev.21"
57+
asimov-runtime = "25.0.0-dev.21"
58+
asimov-sdk = "25.0.0-dev.21"
59+
asimov-server = "25.0.0-dev.21"
60+
asimov-snapshot = "25.0.0-dev.21"
61+
asimov-sys = "25.0.0-dev.21"
62+
asimov-token = "25.0.0-dev.21"
63+
asimov-universe = "25.0.0-dev.21"
64+
asimov-vault = "25.0.0-dev.21"
6565

6666
alloy = { version = "0.5", default-features = false }
6767
async-stream = { version = "0.3", default-features = false }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ cargo add asimov-module
2525

2626
```toml
2727
[dependencies]
28-
asimov = { package = "asimov-module", "version" = "25.0.0-dev.20" }
28+
asimov = { package = "asimov-module", "version" = "25.0.0-dev.21" }
2929
```
3030

3131
### Installation in `Cargo.toml` (with only specific features enabled)
3232

3333
```toml
3434
[dependencies]
35-
asimov = { package = "asimov-module", "version" = "25.0.0-dev.20", default-features = false, features = ["tracing"] }
35+
asimov = { package = "asimov-module", "version" = "25.0.0-dev.21", default-features = false, features = ["tracing"] }
3636
```
3737

3838
## 👉 Examples

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25.0.0-dev.20
1+
25.0.0-dev.21

0 commit comments

Comments
 (0)