Skip to content

Commit a399488

Browse files
committed
fix(version-up): v0.1.5
* fix documentation link in Cargo.toml * adjust to latest hyper. It's not even out yet, but people can't build the APIs anyway.
1 parent 191e822 commit a399488

313 files changed

Lines changed: 24317 additions & 24707 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

etc/api/type-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ make:
2626
- source: lib.rs
2727
output_dir: src
2828
cargo:
29-
build_version: "0.1.4"
29+
build_version: "0.1.5"
3030
keywords: [protocol, web, api]
3131
dependencies:
3232
- url = "*"

gen/adexchangebuyer1d3/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
[package]
55

66
name = "google-adexchangebuyer1d3"
7-
version = "0.1.4+20150323"
7+
version = "0.1.5+20150323"
88
authors = ["Sebastian Thiel <byronimo@gmail>"]
99
description = "A complete library to interact with Ad Exchange Buyer (protocol v1.3)"
1010
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/adexchangebuyer1d3"
1111
homepage = "https://developers.google.com/ad-exchange/buyer-rest"
12-
documentation = "http://byron.github.io/google-apis-rs/google-adexchangebuyer1d3"
12+
documentation = "http://byron.github.io/google-apis-rs/google_adexchangebuyer1d3"
1313
license = "MIT"
1414
keywords = ["adexchangebuyer", "google", "protocol", "web", "api"]
1515

gen/adexchangebuyer1d3/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DO NOT EDIT !
55
-->
66
The `google-adexchangebuyer1d3` library allows access to all features of the *Google Ad Exchange Buyer* service.
77

8-
This documentation was generated from *Ad Exchange Buyer* crate version *0.1.4+20150323*, where *20150323* is the exact revision of the *adexchangebuyer:v1.3* schema built by the [mako](http://www.makotemplates.org/) code generator *v0.1.4*.
8+
This documentation was generated from *Ad Exchange Buyer* crate version *0.1.5+20150323*, where *20150323* is the exact revision of the *adexchangebuyer:v1.3* schema built by the [mako](http://www.makotemplates.org/) code generator *v0.1.5*.
99

1010
Everything else about the *Ad Exchange Buyer* *v1d3* API can be found at the
1111
[official documentation site](https://developers.google.com/ad-exchange/buyer-rest).

gen/adexchangebuyer1d3/src/cmn.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -483,8 +483,8 @@ impl HeaderFormat for RangeResponseHeader {
483483
}
484484

485485
/// A utility type to perform a resumable upload from start to end.
486-
pub struct ResumableUploadHelper<'a, NC: 'a, A: 'a> {
487-
pub client: &'a mut hyper::client::Client<NC>,
486+
pub struct ResumableUploadHelper<'a, A: 'a> {
487+
pub client: &'a mut hyper::client::Client,
488488
pub delegate: &'a mut Delegate,
489489
pub start_at: Option<u64>,
490490
pub auth: &'a mut A,
@@ -496,9 +496,8 @@ pub struct ResumableUploadHelper<'a, NC: 'a, A: 'a> {
496496
pub content_length: u64
497497
}
498498

499-
impl<'a, NC, A> ResumableUploadHelper<'a, NC, A>
500-
where NC: hyper::net::NetworkConnector,
501-
A: oauth2::GetToken {
499+
impl<'a, A> ResumableUploadHelper<'a, A>
500+
where A: oauth2::GetToken {
502501

503502
fn query_transfer_status(&mut self) -> std::result::Result<u64, hyper::HttpResult<hyper::client::Response>> {
504503
loop {

0 commit comments

Comments
 (0)