-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #351 from str4d/release-0.9.0
Release 0.9.0
- Loading branch information
Showing
12 changed files
with
25 additions
and
18 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "age-core" | ||
description = "[BETA] Common functions used across the age crates" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Jack Grigg <[email protected]>"] | ||
repository = "https://github.com/str4d/rage" | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "age-plugin" | ||
description = "[BETA] API for writing age plugins." | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Jack Grigg <[email protected]>"] | ||
repository = "https://github.com/str4d/rage" | ||
readme = "README.md" | ||
|
@@ -10,7 +10,7 @@ edition = "2021" | |
rust-version = "1.59" | ||
|
||
[dependencies] | ||
age-core = { version = "0.8.0", path = "../age-core", features = ["plugin"] } | ||
age-core = { version = "0.9.0", path = "../age-core", features = ["plugin"] } | ||
base64 = "0.13" | ||
bech32 = "0.9" | ||
chrono = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "age" | ||
description = "[BETA] A simple, secure, and modern encryption library." | ||
version = "0.8.1" | ||
version = "0.9.0" | ||
authors = ["Jack Grigg <[email protected]>"] | ||
repository = "https://github.com/str4d/rage" | ||
readme = "README.md" | ||
|
@@ -15,7 +15,7 @@ rust-version = "1.59" | |
maintenance = { status = "experimental" } | ||
|
||
[dependencies] | ||
age-core = { version = "0.8.0", path = "../age-core" } | ||
age-core = { version = "0.9.0", path = "../age-core" } | ||
|
||
# Dependencies required by the age specification: | ||
# - Base64 from RFC 4648 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "rage" | ||
description = "[BETA] A simple, secure, and modern encryption tool." | ||
version = "0.8.1" | ||
version = "0.9.0" | ||
authors = ["Jack Grigg <[email protected]>"] | ||
repository = "https://github.com/str4d/rage" | ||
readme = "../README.md" | ||
|
@@ -54,7 +54,7 @@ maintenance = { status = "experimental" } | |
|
||
[dependencies] | ||
# rage and rage-keygen dependencies | ||
age = { version = "0.8.1", path = "../age", features = ["armor", "cli-common", "plugin"] } | ||
age = { version = "0.9.0", path = "../age", features = ["armor", "cli-common", "plugin"] } | ||
chrono = "0.4" | ||
console = { version = "0.15", default-features = false } | ||
env_logger = "0.9" | ||
|