Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install nightly
run: rustup toolchain install nightly && rustup toolchain install stable && rustup toolchain install 1.80
- name: Miri (nightly)
run: rustup component add --toolchain nightly miri && cd savefile-test && cargo +nightly miri test
run: rustup component add --toolchain nightly miri && cargo +nightly miri test
- name: Build (nightly)
run: cargo +nightly build --workspace
- name: Run tests (nightly)
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@

This file contains information about changes in each version of savefile.

## 0.20.3

The convenience functions `save_file`, `save_file_compressed` and `save_file_noschema`
did not correctly flush their BufWriter. This meant that write errors could go unreported.

## 0.20.2

Fix bug where `#[savefile_ignore]` didn't work if the ignored field was first or last,
Expand Down
Loading
Loading