Skip to content

Commit

Permalink
Release 0.0.46
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed May 18, 2023
1 parent 159b47f commit 47413bd
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 36 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ impl<'de, M> Decode<'de, M> for MyType where M: Mode {
```

Another major aspect where Müsli differs is in the concept of
[modes](#modes) (note the `M` parameter above). Since this parameterises the
`Encode` and `Decode` traits it allows for the same data model to be
[modes](#modes) (note the `M` parameter above). Since this is a parameter of
the `Encode` and `Decode` traits it allows for the same data model to be
serialized in many different ways. This is a larger topic and is covered
further down.

Expand All @@ -121,8 +121,8 @@ further down.
Add the following to your `Cargo.toml`:

```toml
musli = "0.0.45"
musli-wire = "0.0.45"
musli = "0.0.46"
musli-wire = "0.0.46"
```

<br>
Expand Down
4 changes: 2 additions & 2 deletions crates/musli-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-common"
version = "0.0.45"
version = "0.0.46"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -21,7 +21,7 @@ std = ["musli/std"]
alloc = []

[dependencies]
musli = { path = "../musli", version = "0.0.45", default-features = false }
musli = { path = "../musli", version = "0.0.46", default-features = false }

[dev-dependencies]
rand = "0.8.5"
8 changes: 4 additions & 4 deletions crates/musli-descriptive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-descriptive"
version = "0.0.45"
version = "0.0.46"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -22,7 +22,7 @@ alloc = ["musli/alloc", "musli-common/alloc", "musli-storage/alloc"]
test = []

[dependencies]
musli = { path = "../musli", version = "0.0.45", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.45", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.45", default-features = false }
musli = { path = "../musli", version = "0.0.46", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.46", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.46", default-features = false }
simdutf8 = { version = "0.1.4", optional = true, default-features = false }
8 changes: 4 additions & 4 deletions crates/musli-json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-json"
version = "0.0.45"
version = "0.0.46"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -22,9 +22,9 @@ alloc = ["musli/alloc", "musli-common/alloc", "musli-value/alloc"]
test = []

[dependencies]
musli = { path = "../musli", version = "0.0.45", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.45", default-features = false }
musli-value = { path = "../musli-value", version = "0.0.45", default-features = false, optional = true }
musli = { path = "../musli", version = "0.0.46", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.46", default-features = false }
musli-value = { path = "../musli-value", version = "0.0.46", default-features = false, optional = true }

itoa = "1.0.6"
ryu = "1.0.13"
Expand Down
2 changes: 1 addition & 1 deletion crates/musli-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-macros"
version = "0.0.45"
version = "0.0.46"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.65"
Expand Down
6 changes: 3 additions & 3 deletions crates/musli-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-storage"
version = "0.0.45"
version = "0.0.46"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -22,6 +22,6 @@ alloc = ["musli/alloc", "musli-common/alloc"]
test = []

[dependencies]
musli = { path = "../musli", version = "0.0.45", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.45", default-features = false }
musli = { path = "../musli", version = "0.0.46", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.46", default-features = false }
simdutf8 = { version = "0.1.4", optional = true, default-features = false }
8 changes: 4 additions & 4 deletions crates/musli-value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-value"
version = "0.0.45"
version = "0.0.46"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -22,9 +22,9 @@ std = ["musli/std", "musli-storage/std", "musli-common/std", "alloc"]
alloc = ["musli/alloc", "musli-storage/alloc", "musli-common/alloc"]

[dependencies]
musli = { path = "../musli", version = "0.0.45", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.45", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.45", default-features = false }
musli = { path = "../musli", version = "0.0.46", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.46", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.46", default-features = false }

itoa = "1.0.6"
ryu = "1.0.13"
Expand Down
8 changes: 4 additions & 4 deletions crates/musli-wire/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-wire"
version = "0.0.45"
version = "0.0.46"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -22,7 +22,7 @@ alloc = ["musli/alloc", "musli-common/alloc", "musli-storage/alloc"]
test = []

[dependencies]
musli = { path = "../musli", version = "0.0.45", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.45", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.45", default-features = false }
musli = { path = "../musli", version = "0.0.46", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.46", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.46", default-features = false }
simdutf8 = { version = "0.1.4", optional = true, default-features = false }
4 changes: 2 additions & 2 deletions crates/musli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli"
version = "0.0.45"
version = "0.0.46"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -21,7 +21,7 @@ std = ["alloc"]
alloc = []

[dependencies]
musli-macros = { version = "=0.0.45", path = "../musli-macros" }
musli-macros = { version = "=0.0.46", path = "../musli-macros" }

[dev-dependencies]
anyhow = "1.0.71"
Expand Down
8 changes: 4 additions & 4 deletions crates/musli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ impl<'de, M> Decode<'de, M> for MyType where M: Mode {
```

Another major aspect where Müsli differs is in the concept of
[modes](#modes) (note the `M` parameter above). Since this parameterises the
`Encode` and `Decode` traits it allows for the same data model to be
[modes](#modes) (note the `M` parameter above). Since this is a parameter of
the `Encode` and `Decode` traits it allows for the same data model to be
serialized in many different ways. This is a larger topic and is covered
further down.

Expand All @@ -121,8 +121,8 @@ further down.
Add the following to your `Cargo.toml`:

```toml
musli = "0.0.45"
musli-wire = "0.0.45"
musli = "0.0.46"
musli-wire = "0.0.46"
```

<br>
Expand Down
8 changes: 4 additions & 4 deletions crates/musli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@
//! ```
//!
//! Another major aspect where Müsli differs is in the concept of
//! [modes](#modes) (note the `M` parameter above). Since this parameterises the
//! `Encode` and `Decode` traits it allows for the same data model to be
//! [modes](#modes) (note the `M` parameter above). Since this is a parameter of
//! the `Encode` and `Decode` traits it allows for the same data model to be
//! serialized in many different ways. This is a larger topic and is covered
//! further down.
//!
Expand All @@ -123,8 +123,8 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! musli = "0.0.45"
//! musli-wire = "0.0.45"
//! musli = "0.0.46"
//! musli-wire = "0.0.46"
//! ```
//!
//! <br>
Expand Down

0 comments on commit 47413bd

Please sign in to comment.