diff --git a/Cargo.lock b/Cargo.lock index de1033b6..fbcad87f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -876,7 +876,7 @@ dependencies = [ [[package]] name = "libpna" -version = "0.18.0" +version = "0.19.0" dependencies = [ "aes", "argon2", @@ -1110,7 +1110,7 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "pna" -version = "0.18.0" +version = "0.19.0" dependencies = [ "libpna", "version-sync", @@ -1118,7 +1118,7 @@ dependencies = [ [[package]] name = "portable-network-archive" -version = "0.18.0" +version = "0.19.0" dependencies = [ "assert_cmd", "base64", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b0984ffa..f1c799e0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "portable-network-archive" -version = "0.18.0" +version = "0.19.0" edition = "2021" license = "Apache-2.0 OR MIT" description = "Portable-Network-Archive cli" @@ -22,7 +22,7 @@ ignore = "0.4.23" itertools = "0.13.0" memmap2 = { version = "0.9.5", optional = true } normalize-path = "0.2.1" -pna = { version = "0.18.0", path = "../pna" } +pna = { version = "0.19.0", path = "../pna" } rayon = "1.10.0" tabled = { version = "0.16.0", default-features = false, features = ["std", "ansi"] } rand = "0.8.5" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 1255b7a8..75e1d0a7 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libpna" -version = "0.18.0" +version = "0.19.0" edition = "2021" license = "Apache-2.0 OR MIT" description = "PNA(Portable-Network-Archive) decoding and encoding library" diff --git a/lib/README.md b/lib/README.md index 426db1d0..0485b1cd 100644 --- a/lib/README.md +++ b/lib/README.md @@ -10,7 +10,7 @@ A pna archive reading/writing library for Rust. ```toml # Cargo.toml [dependencies] -libpna = "0.18" +libpna = "0.19" ``` ## Reading an archive diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 50ff9f37..52793eaf 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -5,7 +5,7 @@ //! an archive is never required to be fully resident in memory, and all objects //! provide largely a streaming interface to read bytes from. -#![doc(html_root_url = "https://docs.rs/libpna/0.18.0")] +#![doc(html_root_url = "https://docs.rs/libpna/0.19.0")] #![deny( missing_docs, clippy::missing_inline_in_public_items, diff --git a/pna/Cargo.toml b/pna/Cargo.toml index f7dd8ad5..0a01373d 100644 --- a/pna/Cargo.toml +++ b/pna/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pna" -version = "0.18.0" +version = "0.19.0" edition = "2021" license = "Apache-2.0 OR MIT" description = "PNA(Portable-Network-Archive) decoding and encoding library" @@ -11,7 +11,7 @@ keywords = ["pna", "archive", "crypto", "data"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -libpna = { version = "0.18.0", path = "../lib" } +libpna = { version = "0.19.0", path = "../lib" } [dev-dependencies] version-sync = "0.9.5" diff --git a/pna/README.md b/pna/README.md index b236dec5..d3b4c6d4 100644 --- a/pna/README.md +++ b/pna/README.md @@ -10,7 +10,7 @@ A pna archive reading/writing library for Rust. ```toml # Cargo.toml [dependencies] -pna = "0.18" +pna = "0.19" ``` ## Reading an archive diff --git a/pna/src/lib.rs b/pna/src/lib.rs index de44f1e3..16da4a47 100644 --- a/pna/src/lib.rs +++ b/pna/src/lib.rs @@ -3,7 +3,7 @@ //! This library provides filesystem-related utilities in addition to utilities //! necessary to manage PNA archives abstracted over a reader or writer hosted by [libpna]. #![cfg_attr(target_os = "wasi", feature(wasi_ext))] -#![doc(html_root_url = "https://docs.rs/pna/0.18.0")] +#![doc(html_root_url = "https://docs.rs/pna/0.19.0")] #![deny( missing_docs, clippy::missing_inline_in_public_items,