Skip to content

Commit

Permalink
Fix typos and bump to v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kijewski committed Oct 23, 2023
1 parent d7c25b6 commit d15c590
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 85 deletions.
138 changes: 59 additions & 79 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zipsign"
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key"
version = "0.1.0-a.3"
version = "0.1.0"
edition = "2021"
authors = ["René Kijewski <[email protected]>"]
repository = "https://github.com/Kijewski/zipsign"
Expand All @@ -24,7 +24,7 @@ thiserror = "1"
zip = { version = "0.6", default-features = false }

[workspace.dependencies.zipsign-api]
version = "0.1.0-a.3"
version = "0.1.0"
path = "api"
default-features = false
features = ["tar", "zip"]
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zipsign-api"
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key"
version = "0.1.0-a.3"
version = "0.1.0"
edition = "2021"
authors = ["René Kijewski <[email protected]>"]
repository = "https://github.com/Kijewski/zipsign"
Expand Down
2 changes: 1 addition & 1 deletion api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl fmt::Debug for Prehash {
}

impl Prehash {
/// Instanciate a new prehash
/// Instantiate a new prehash
pub fn new() -> Self {
Self(ed25519_dalek::Sha512::default())
}
Expand Down
Loading

0 comments on commit d15c590

Please sign in to comment.