Skip to content

Commit

Permalink
chore: re-export yup_oauth2 as suggested by @Serpex
Browse files Browse the repository at this point in the history
  • Loading branch information
lquerel committed Apr 28, 2024
1 parent 904ff09 commit 4e63c37
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.20.0] - 2024-04-28

### Maintenance

- Re-export yup_oauth2 as suggested by @serpex.

## [0.19.0] - 2024-04-27

### Maintenance
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcp-bigquery-client"
version = "0.19.0"
version = "0.20.0"
authors = ["Laurent Querel <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ use crate::routine::RoutineApi;
use crate::table::TableApi;
use crate::tabledata::TableDataApi;

/// Since yup_oauth2 structs are used as parameters in public functions there is already semver
/// coupling, as it is an error if consumer uses different version of yup_oauth than gcp-bigquery-client
/// Export yup_oauth2 so consumers don't need to carefully keep their dependency versions in sync.
/// (see https://github.com/lquerel/gcp-bigquery-client/pull/86)
pub use yup_oauth2;

pub mod auth;
Expand Down

0 comments on commit 4e63c37

Please sign in to comment.