Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install nightly
run: rustup toolchain install nightly && rustup toolchain install stable && rustup toolchain install 1.74
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
- name: Build (nightly)
Expand All @@ -35,6 +35,6 @@ jobs:
run: cargo +stable build -p savefile-min-build
- name: compile_tests (stable)
run: cd compile_tests && cargo +stable test
- name: Build (1.74)
run: cargo +1.74 build --workspace
- name: Build (1.80)
run: cargo +1.80 build --workspace

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,22 @@

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

## 0.19.0

Optional support for chrono, and some types from egui.

Bumps MSRV to 1.80.

## 0.18.7

Minor fixes to fix build. No impact on features or correctness.

## 0.18.6

Support for std::net::SocketAddr.

Support for chrono::DateTime<Utc> .

Fix warning on latest rust nightly.

## 0.18.5
Expand Down
223 changes: 220 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions savefile-abi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "savefile-abi"
version = "0.18.7"
version = "0.19.0"
edition = "2021"
authors = ["Anders Musikka <[email protected]>"]
documentation = "https://docs.rs/savefile-abi/"
Expand All @@ -17,8 +17,8 @@ keywords = ["dylib", "dlopen", "ffi"]
license = "MIT/Apache-2.0"

[dependencies]
savefile = { path="../savefile", version = "=0.18.7" }
savefile-derive = { path="../savefile-derive", version = "=0.18.7" }
savefile = { path="../savefile", version = "=0.19.0" }
savefile-derive = { path="../savefile-derive", version = "=0.19.0" }
byteorder = "1.4"
libloading = "0.8"
bytes = {version = "1.8", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion savefile-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "savefile-derive"
version = "0.18.7"
version = "0.19.0"
authors = ["Anders Musikka <[email protected]>"]
repository = "https://github.com/avl/savefile"
rust-version = "1.74"
Expand Down
Loading