Skip to content

Commit

Permalink
v0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wfraser committed Jan 3, 2025
1 parent db9cd36 commit 7ad219f
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dropbox-sdk"
version = "0.19.0-beta2"
version = "0.19.0"
authors = ["Bill Fraser <[email protected]>"]
edition = "2021"
description = "Rust bindings to the Dropbox API, generated by Stone from the official spec."
Expand Down
17 changes: 4 additions & 13 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -21,7 +11,8 @@ xxxx-yy-zz
* Functions which used to return `Result<Result<T, E>, dropbox_sdk::Error>` now return `Result<T, dropbox_sdk::Error<E>>`.
* 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
Expand Down
2 changes: 1 addition & 1 deletion src/client_helpers.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/client_trait.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2019-2020 Dropbox, Inc.
// Copyright (c) 2019-2025 Dropbox, Inc.

//! Everything needed to implement your HTTP client.
Expand Down
2 changes: 1 addition & 1 deletion src/default_client.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020-2021 Dropbox, Inc.
// Copyright (c) 2020-2025 Dropbox, Inc.

//! The default HTTP client.
//!
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2019-2021 Dropbox, Inc.
// Copyright (c) 2019-2025 Dropbox, Inc.

#![deny(
missing_docs,
Expand Down
2 changes: 1 addition & 1 deletion src/oauth2.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2019-2021 Dropbox, Inc.
// Copyright (c) 2019-2025 Dropbox, Inc.

//! Helpers for requesting OAuth2 tokens.
//!
Expand Down

0 comments on commit 7ad219f

Please sign in to comment.