diff --git a/Cargo.toml b/Cargo.toml index c5a6288..2c7d554 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dropbox-sdk" -version = "0.19.0-beta2" +version = "0.19.0" authors = ["Bill Fraser "] edition = "2021" description = "Rust bindings to the Dropbox API, generated by Stone from the official spec." diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 29551a9..5c3470b 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,15 +1,5 @@ -# v0.19.0-beta3 -xxxx-yy-zz -* added implementations of AppAuthClient to default HTTP clients - -# v0.19.0-beta2 -2024-11-05 -* renamed sync_routes_default feature to sync_routes_in_root -* improved appearance of docs wrt features -* added tests for custom clients logic - -# v0.19.0-beta1 -2024-10-31 +# v0.19.0 +2025-01-03 * **BIG CHANGE: async support added** * HTTP client traits completely redesigned * Should actually be much simpler to implement now, as the work of setting the right headers has been extracted out @@ -21,7 +11,8 @@ xxxx-yy-zz * Functions which used to return `Result, dropbox_sdk::Error>` now return `Result>`. * in other words, `Ok(Err(e))` is now written `Err(dropbox_sdk::Error::Api(e))` and `Ok(Ok(v))` is just `Ok(v)`. * `dropbox_sdk::Error` now has a type parameter which differs depending on the function being called. -* MSRV raised to 1.71.0 +* MSRV raised to 1.75.0 +* added implementations of AppAuthClient to default HTTP clients # v0.18.1 2024-05-06 diff --git a/src/client_helpers.rs b/src/client_helpers.rs index 0471f71..f01aef1 100644 --- a/src/client_helpers.rs +++ b/src/client_helpers.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2021 Dropbox, Inc. +// Copyright (c) 2019-2025 Dropbox, Inc. use std::error::Error as StdError; use std::io::ErrorKind; diff --git a/src/client_trait.rs b/src/client_trait.rs index 3485b62..8c1ae27 100644 --- a/src/client_trait.rs +++ b/src/client_trait.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2020 Dropbox, Inc. +// Copyright (c) 2019-2025 Dropbox, Inc. //! Everything needed to implement your HTTP client. diff --git a/src/default_client.rs b/src/default_client.rs index 8ecfc8e..9859fde 100644 --- a/src/default_client.rs +++ b/src/default_client.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2021 Dropbox, Inc. +// Copyright (c) 2020-2025 Dropbox, Inc. //! The default HTTP client. //! diff --git a/src/lib.rs b/src/lib.rs index e99ab1e..9f3bbaa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2021 Dropbox, Inc. +// Copyright (c) 2019-2025 Dropbox, Inc. #![deny( missing_docs, diff --git a/src/oauth2.rs b/src/oauth2.rs index 9561a95..94919e9 100644 --- a/src/oauth2.rs +++ b/src/oauth2.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2021 Dropbox, Inc. +// Copyright (c) 2019-2025 Dropbox, Inc. //! Helpers for requesting OAuth2 tokens. //!