Skip to content

Commit

Permalink
🔖 Bump version to 0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanTsune committed Nov 17, 2024
1 parent d76c942 commit f2769c8
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions pna/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pna/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pna/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit f2769c8

Please sign in to comment.