diff --git a/CHANGELOG.md b/CHANGELOG.md index 5074fbd..99cac66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +0.4.1 - 2022/04/12 + * Fix a couple of issues preventing loading some sites (#92) + * Move to upstream arti 0.2 + 0.4.0 - 2022/03/31 * Expose a full Client * Android: split TorLibApi_torRequest in Client_{create,send,free} diff --git a/Cargo.lock b/Cargo.lock index 0e6508a..89edea6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1106,7 +1106,7 @@ dependencies = [ [[package]] name = "lightarti-rest" -version = "0.4.0" +version = "0.4.1" dependencies = [ "android_logger", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 3225dcd..e7747a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightarti-rest" -version = "0.4.0" +version = "0.4.1" authors = [ "Linus Gasser ", "Laurent Girod ", @@ -8,6 +8,18 @@ authors = [ "Valérian Rousset ", ] edition = "2021" +license-file = "LICENSE" +description = "Simple wrapper around arti to enable mobile apps to make anonymous requests via Tor" +repository = "https://github.com/c4dt/lightarti-rest" +keywords = [ + "anonymity", + "privacy", + "tor", +] +categories = [ + "cryptography", + "web-programming::http-client", +] [lib] crate-type = ["cdylib", "lib", "staticlib"]