Skip to content

Commit 7a0755d

Browse files
committed
Bumps CAS version to 5.0.0
Increments the CAS version to 5.0.0. Optimizes processing of Fabric/Quilt mods by only downloading intermediary libraries per game version.
1 parent a57fe6b commit 7a0755d

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

daedalus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "daedalus"
3-
version = "0.1.21"
3+
version = "5.0.0"
44
authors = ["Jai A <jaiagr+gpg@pm.me>"]
55
edition = "2024"
66
license = "MIT"

daedalus_client/src/services/cas.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ use tracing::{info, instrument};
88
///
99
/// This is the single version entrypoint for all metadata (minecraft, forge, fabric, quilt, neoforge).
1010
/// Old versions had individual versioning per loader, but v3+ uses a unified version.
11-
pub const CAS_VERSION: u32 = 4;
11+
///
12+
/// ## Version History
13+
/// - v4: Previous version
14+
/// - v5: Optimized Fabric/Quilt processing - only intermediary libraries are downloaded per game version
15+
pub const CAS_VERSION: u32 = 5;
1216

1317
/// Content-Addressable Storage (CAS) system
1418
///

0 commit comments

Comments
 (0)