diff --git a/CHANGELOG.md b/CHANGELOG.md index 910e7ad..a92fb83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Changelog -### v0.10.1 - 2024-06-10 +## v1.0.0 - 2024-07-05 + +The design of APIs has been massively overhauled and normalized, with the changes too substantial to individually enumerate. Major highlights: + +* Asset (the union between LocalAsset and RemoteAsset) has been removed +* RemoteAsset is largely replaced with AxoClient which to allow you to actually initialized/configure the underlying reqwest client +* Errors cleaned up +* Function names cleaned up to be unambiguous and normal +* "missing" APIs added + + +## v0.10.1 - 2024-06-10 Fixes the `pub use reqwest` that was added in the previous version. diff --git a/Cargo.lock b/Cargo.lock index 3a31c83..dd5e77d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axoasset" -version = "0.10.1" +version = "1.0.0" dependencies = [ "assert_fs", "camino", diff --git a/Cargo.toml b/Cargo.toml index 15047db..04439d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "axoasset" description = ">o_o<" -version = "0.10.1" +version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/axodotdev/axoasset"