From f2769c8a923c98128b8a83a3be77be1e8c49caf9 Mon Sep 17 00:00:00 2001 From: ChanTsune <41658782+ChanTsune@users.noreply.github.com> Date: Sun, 17 Nov 2024 23:30:26 +0900 Subject: [PATCH] :bookmark: Bump version to 0.20.0 --- Cargo.lock | 6 +++--- cli/Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- lib/README.md | 2 +- lib/src/lib.rs | 2 +- pna/Cargo.toml | 4 ++-- pna/README.md | 2 +- pna/src/lib.rs | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a2d076a6..7d0959cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1016,7 +1016,7 @@ dependencies = [ [[package]] name = "libpna" -version = "0.19.0" +version = "0.20.0" dependencies = [ "aes", "argon2", @@ -1257,7 +1257,7 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "pna" -version = "0.19.0" +version = "0.20.0" dependencies = [ "libpna", "version-sync", @@ -1265,7 +1265,7 @@ dependencies = [ [[package]] name = "portable-network-archive" -version = "0.19.1" +version = "0.20.0" dependencies = [ "assert_cmd", "base64", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 1cecacb6..daf06cda 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "portable-network-archive" -version = "0.19.1" +version = "0.20.0" edition = "2021" license = "Apache-2.0 OR MIT" description = "Portable-Network-Archive cli" @@ -24,7 +24,7 @@ itertools = "0.13.0" memmap2 = { version = "0.9.5", optional = true } nom = "7.1.3" normalize-path = "0.2.1" -pna = { version = "0.19.0", path = "../pna" } +pna = { version = "0.20.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 8cca954e..15fc7435 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libpna" -version = "0.19.0" +version = "0.20.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 0485b1cd..b6e8f770 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.19" +libpna = "0.20" ``` ## Reading an archive diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 52793eaf..2cb6357e 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.19.0")] +#![doc(html_root_url = "https://docs.rs/libpna/0.20.0")] #![deny( missing_docs, clippy::missing_inline_in_public_items, diff --git a/pna/Cargo.toml b/pna/Cargo.toml index 0a01373d..8732842a 100644 --- a/pna/Cargo.toml +++ b/pna/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pna" -version = "0.19.0" +version = "0.20.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.19.0", path = "../lib" } +libpna = { version = "0.20.0", path = "../lib" } [dev-dependencies] version-sync = "0.9.5" diff --git a/pna/README.md b/pna/README.md index d3b4c6d4..7aef4b40 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.19" +pna = "0.20" ``` ## Reading an archive diff --git a/pna/src/lib.rs b/pna/src/lib.rs index 16da4a47..119b4292 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.19.0")] +#![doc(html_root_url = "https://docs.rs/pna/0.20.0")] #![deny( missing_docs, clippy::missing_inline_in_public_items,