Skip to content

Commit 7ad219f

Browse files
committed
v0.19.0
1 parent db9cd36 commit 7ad219f

File tree

7 files changed

+10
-19
lines changed

7 files changed

+10
-19
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dropbox-sdk"
3-
version = "0.19.0-beta2"
3+
version = "0.19.0"
44
authors = ["Bill Fraser <[email protected]>"]
55
edition = "2021"
66
description = "Rust bindings to the Dropbox API, generated by Stone from the official spec."

RELEASE_NOTES.md

+4-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
1-
# v0.19.0-beta3
2-
xxxx-yy-zz
3-
* added implementations of AppAuthClient to default HTTP clients
4-
5-
# v0.19.0-beta2
6-
2024-11-05
7-
* renamed sync_routes_default feature to sync_routes_in_root
8-
* improved appearance of docs wrt features
9-
* added tests for custom clients logic
10-
11-
# v0.19.0-beta1
12-
2024-10-31
1+
# v0.19.0
2+
2025-01-03
133
* **BIG CHANGE: async support added**
144
* HTTP client traits completely redesigned
155
* 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
2111
* Functions which used to return `Result<Result<T, E>, dropbox_sdk::Error>` now return `Result<T, dropbox_sdk::Error<E>>`.
2212
* in other words, `Ok(Err(e))` is now written `Err(dropbox_sdk::Error::Api(e))` and `Ok(Ok(v))` is just `Ok(v)`.
2313
* `dropbox_sdk::Error` now has a type parameter which differs depending on the function being called.
24-
* MSRV raised to 1.71.0
14+
* MSRV raised to 1.75.0
15+
* added implementations of AppAuthClient to default HTTP clients
2516

2617
# v0.18.1
2718
2024-05-06

src/client_helpers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2019-2021 Dropbox, Inc.
1+
// Copyright (c) 2019-2025 Dropbox, Inc.
22

33
use std::error::Error as StdError;
44
use std::io::ErrorKind;

src/client_trait.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2019-2020 Dropbox, Inc.
1+
// Copyright (c) 2019-2025 Dropbox, Inc.
22

33
//! Everything needed to implement your HTTP client.
44

src/default_client.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 Dropbox, Inc.
1+
// Copyright (c) 2020-2025 Dropbox, Inc.
22

33
//! The default HTTP client.
44
//!

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2019-2021 Dropbox, Inc.
1+
// Copyright (c) 2019-2025 Dropbox, Inc.
22

33
#![deny(
44
missing_docs,

src/oauth2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2019-2021 Dropbox, Inc.
1+
// Copyright (c) 2019-2025 Dropbox, Inc.
22

33
//! Helpers for requesting OAuth2 tokens.
44
//!

0 commit comments

Comments
 (0)