Skip to content

Commit 7342dde

Browse files
committed
Bump the version to 25.0.0-dev.12.
1 parent 515ab38 commit 7342dde

4 files changed

Lines changed: 40 additions & 32 deletions

File tree

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.12 - 2025-06-27
9+
### Changed
10+
- Bump the Clientele.rs dependency
11+
### Added
12+
- Resolve file extensions as well (#11)
13+
### Fixed
14+
- Prefixes mangling patterns (#12)
15+
816
## 25.0.0-dev.11 - 2025-06-19
917
### Changed
1018
- Update project links

Cargo.toml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ default-members = [
1313
resolver = "2"
1414

1515
[workspace.package]
16-
version = "25.0.0-dev.11"
16+
version = "25.0.0-dev.12"
1717
authors = ["ASIMOV Systems <support@asimov.systems>"]
1818
edition = "2024"
1919
rust-version = "1.85"
@@ -28,34 +28,34 @@ categories = []
2828
publish = true
2929

3030
[workspace.dependencies]
31-
asimov-account = "25.0.0-dev.11"
32-
asimov-agent = "25.0.0-dev.11"
33-
asimov-cache = "25.0.0-dev.11"
34-
asimov-config = "25.0.0-dev.11"
35-
asimov-construct = "25.0.0-dev.11"
36-
asimov-core = "25.0.0-dev.11"
37-
asimov-dataset = "25.0.0-dev.11"
38-
asimov-directory = "25.0.0-dev.11"
39-
asimov-env = "25.0.0-dev.11"
40-
asimov-flow = "25.0.0-dev.11"
41-
asimov-graph = "25.0.0-dev.11"
42-
asimov-ledger = "25.0.0-dev.11"
43-
asimov-module = "25.0.0-dev.11"
44-
asimov-ontology = "25.0.0-dev.11"
45-
asimov-patterns = "25.0.0-dev.11"
46-
asimov-platform = "25.0.0-dev.11"
47-
asimov-prompt = "25.0.0-dev.11"
48-
asimov-protocol = "25.0.0-dev.11"
49-
asimov-proxy = "25.0.0-dev.11"
50-
asimov-repository = "25.0.0-dev.11"
51-
asimov-runner = "25.0.0-dev.11"
52-
asimov-runtime = "25.0.0-dev.11"
53-
asimov-sdk = "25.0.0-dev.11"
54-
asimov-server = "25.0.0-dev.11"
55-
asimov-sys = "25.0.0-dev.11"
56-
asimov-token = "25.0.0-dev.11"
57-
asimov-universe = "25.0.0-dev.11"
58-
asimov-vault = "25.0.0-dev.11"
31+
asimov-account = "25.0.0-dev.12"
32+
asimov-agent = "25.0.0-dev.12"
33+
asimov-cache = "25.0.0-dev.12"
34+
asimov-config = "25.0.0-dev.12"
35+
asimov-construct = "25.0.0-dev.12"
36+
asimov-core = "25.0.0-dev.12"
37+
asimov-dataset = "25.0.0-dev.12"
38+
asimov-directory = "25.0.0-dev.12"
39+
asimov-env = "25.0.0-dev.12"
40+
asimov-flow = "25.0.0-dev.12"
41+
asimov-graph = "25.0.0-dev.12"
42+
asimov-ledger = "25.0.0-dev.12"
43+
asimov-module = "25.0.0-dev.12"
44+
asimov-ontology = "25.0.0-dev.12"
45+
asimov-patterns = "25.0.0-dev.12"
46+
asimov-platform = "25.0.0-dev.12"
47+
asimov-prompt = "25.0.0-dev.12"
48+
asimov-protocol = "25.0.0-dev.12"
49+
asimov-proxy = "25.0.0-dev.12"
50+
asimov-repository = "25.0.0-dev.12"
51+
asimov-runner = "25.0.0-dev.12"
52+
asimov-runtime = "25.0.0-dev.12"
53+
asimov-sdk = "25.0.0-dev.12"
54+
asimov-server = "25.0.0-dev.12"
55+
asimov-sys = "25.0.0-dev.12"
56+
asimov-token = "25.0.0-dev.12"
57+
asimov-universe = "25.0.0-dev.12"
58+
asimov-vault = "25.0.0-dev.12"
5959
async-stream = "0.3"
6060
async-trait = "0.1"
6161
axum = { version = "0.8", features = ["macros"] }

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.11" }
28+
asimov = { package = "asimov-module", "version" = "25.0.0-dev.12" }
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.11", default-features = false, features = ["tracing"] }
35+
asimov = { package = "asimov-module", "version" = "25.0.0-dev.12", 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.11
1+
25.0.0-dev.12

0 commit comments

Comments
 (0)