Skip to content

Commit

Permalink
fix: Version references
Browse files Browse the repository at this point in the history
  • Loading branch information
avl committed May 1, 2024
1 parent a70070e commit d7ba722
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 21 deletions.
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.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ See the docs for more information, including schema-versioning: https://docs.rs/

# Changelog

## 0.17.1

Just minor improvements to documentation.

## 0.17.0

Expand Down
2 changes: 1 addition & 1 deletion savefile-abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ license = "MIT/Apache-2.0"

[dependencies]
savefile = { path="../savefile", version = "=0.17.1" }
savefile-derive = { path="../savefile-derive", version = "=0.17.0" }
savefile-derive = { path="../savefile-derive", version = "=0.17.1" }
byteorder = "1.4"
libloading = "0.8"
10 changes: 4 additions & 6 deletions savefile-abi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ Full docs: https://docs.rs/savefile-abi/latest/

Savefile-abi is a crate that is primarily meant to help building binary plugins using Rust.

Note! This is a work-in-progress.


```toml
savefile-abi = "0.17.0-beta.11"
savefile = "0.17.0-beta.11"
savefile-derive = "0.17.0-beta.11"
savefile-abi = "0.17"
savefile = "0.17"
savefile-derive = "0.17"
```

# Example
Expand Down Expand Up @@ -74,7 +72,7 @@ fn main() {
// Load the implementation of `dyn AdderInterface` that was published
// using the `savefile_abi_export!` above.
let connection = AbiConnection::<dyn AdderInterface>
::load_shared_library("./ImplementationCrate.so").unwrap();
::load_shared_library("./ImplementationCrate.so").unwrap();

// The type `AbiConnection::<dyn AdderInterface>` implements
// the `AdderInterface`-trait, so we can use it to call its methods.
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.17.0"
version = "0.17.1"
authors = ["Anders Musikka <[email protected]>"]

description = "Custom derive macros for savefile crate - simple, convenient, fast, versioned, binary serialization/deserialization library."
Expand Down
2 changes: 1 addition & 1 deletion savefile-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ nightly=["savefile/nightly"]

[dependencies]
savefile = { path = "../savefile", features = ["size_sanity_checks", "encryption", "compression","bit-set","bit-vec","rustc-hash","serde_derive", "quickcheck"]}
savefile-derive = { path = "../savefile-derive", version = "=0.17.0" }
savefile-derive = { path = "../savefile-derive", version = "=0.17.1" }
savefile-abi = { path = "../savefile-abi" }
bit-vec = "0.6"
arrayvec="0.7"
Expand Down
4 changes: 2 additions & 2 deletions savefile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ bit-set = {version = "0.5", optional = true}
rustc-hash = {version = "1.1", optional = true}
memoffset = "0.9"
byteorder = "1.4"
savefile-derive = {path="../savefile-derive", version = "=0.17.0", optional = true }
savefile-derive = {path="../savefile-derive", version = "=0.17.1", optional = true }
serde_derive = {version= "1.0", optional = true}
serde = {version= "1.0", optional = true}
quickcheck = {version= "1.0", optional = true}

[dev-dependencies]
savefile-derive = { path="../savefile-derive", version = "=0.17.0" }
savefile-derive = { path="../savefile-derive", version = "=0.17.1" }

[build-dependencies]
rustc_version="0.2"
Expand Down
6 changes: 3 additions & 3 deletions savefile_abi_example/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
edition = "2021"

[dependencies]
savefile-abi = "0.17.0-beta.11"
savefile = "0.17.0-beta.11"
savefile-derive = "0.17.0-beta.11"
savefile-abi = "0.17"
savefile = "0.17"
savefile-derive = "0.17"
interface_crate = { path = "../interface_crate" }


Expand Down
6 changes: 3 additions & 3 deletions savefile_abi_example/implementation_crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
savefile-abi = "0.17.0-beta.11"
savefile = "0.17.0-beta.11"
savefile-derive = "0.17.0-beta.11"
savefile-abi = "0.17"
savefile = "0.17"
savefile-derive = "0.17"
interface_crate = { path = "../interface_crate" }

6 changes: 3 additions & 3 deletions savefile_abi_example/interface_crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
savefile-abi = "0.17.0-beta.11"
savefile = "0.17.0-beta.11"
savefile-derive = "0.17.0-beta.11"
savefile-abi = "0.17"
savefile = "0.17"
savefile-derive = "0.17"

0 comments on commit d7ba722

Please sign in to comment.