Skip to content

Commit

Permalink
v0.6.6: Error retry improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
emk committed Jul 31, 2020
1 parent 4d9b2fc commit 7572c8c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.6.6 - 2020-07-31

### Changed

- `Client::wait` now uses exponential backoff for up to 10 total minutes, because we're seeing a lot more temporary infrastructure errors from BigML.
- 500, 503 and 504 HTTP errors are now temporary.

## 0.6.5 - 2020-05-07

### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bigml-parallel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bigml-parallel"
version = "0.6.5"
version = "0.6.6"
authors = ["Eric Kidd <[email protected]>"]
edition = "2018"

Expand All @@ -14,7 +14,7 @@ documentation = "https://github.com/faradayio/bigml-rs/tree/master/bigml-paralle
cli_test_dir = "0.1.5"

[dependencies]
bigml = { version = "=0.6.5", path = "../bigml" }
bigml = { version = "=0.6.6", path = "../bigml" }
bytes = "0.5.3"
common_failures = "0.1.1"
# This makes the executable bigger, but it makes --help much nicer.
Expand Down
2 changes: 1 addition & 1 deletion bigml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bigml"
version = "0.6.5"
version = "0.6.6"
authors = ["Eric Kidd <[email protected]>"]

description = "Unofficial BigML client bindings"
Expand Down

0 comments on commit 7572c8c

Please sign in to comment.