Skip to content

Commit

Permalink
chore: Promote dfx 0.25.0 (#4113)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspofford-dfinity authored Feb 19, 2025
1 parent e8ceda6 commit c45ef75
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ Updated Motoko to [0.14.1](https://github.com/dfinity/motoko/releases/tag/0.14.1

# 0.25.0

### fix: `dfx canister install` and `dfx deploy` with `--no-asset-upgrade` no longer hang indefinitely when wasm is not up to date

### fix: `dfx` downloads `.did` files for remote canisters

### feat: streamlined output during asset synchronization

### fix: correctly detects hyphenated Rust bin crates

### fix: removes unnecessary tsc step in sveltekit build script
Expand Down Expand Up @@ -198,12 +204,13 @@ Log visibility: controllers
The asset canister now estimates the size of the data to be serialized to stable memory,
and reserves that much space for the ValueSerializer's buffer.

- Module hash: bba3181888f3c59b4a5f608aedef05be6fa37276fb7dc394cbadf9cf6e10359b
- Module hash: 865eb25df5a6d857147e078bb33c727797957247f7af2635846d65c5397b36a6
- https://github.com/dfinity/sdk/pull/4095
- https://github.com/dfinity/sdk/pull/4036

### Motoko

Updated Motoko to [0.13.6](https://github.com/dfinity/motoko/releases/tag/0.13.6)
Updated Motoko to [0.13.7](https://github.com/dfinity/motoko/releases/tag/0.13.7)

### Replica

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

5 changes: 3 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tags": {
"latest": "0.24.3"
"latest": "0.25.0"
},
"versions": [
"0.5.0",
Expand Down Expand Up @@ -75,6 +75,7 @@
"0.24.0",
"0.24.1",
"0.24.2",
"0.24.3"
"0.24.3",
"0.25.0"
]
}
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ get_parameters() {

pre_release_check() {
announce "Ensuring dfx and replica are not running."
if pgrep dfx replica ; then
if pgrep -x dfx replica ; then
echo "dfx and replica cannot still be running. kill them and try again."
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion src/dfx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dfx"
version = "0.24.3"
version = "0.25.0"
authors.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down

0 comments on commit c45ef75

Please sign in to comment.