Skip to content

Commit

Permalink
v0.6.5: Fix --retry-on
Browse files Browse the repository at this point in the history
There was a bug in `--retry-on` that prevented it from retrying.
  • Loading branch information
emk committed May 7, 2020
1 parent 67cb72c commit 4fd6a93
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.5 - 2020-05-07

### Added

- `bigml`: Added `Error::original_bigml_error` to unwrap our own error type.

### Fixed

- `bigml`: We now have a correctly implemented and documented contract for `Client::wait` and `Client::wait_opt`'s error reporting.
- `bigml-parallel`: We should now honor `--retry-on`.

## 0.6.4 - 2020-05-06

### 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.4"
version = "0.6.5"
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.4", path = "../bigml" }
bigml = { version = "=0.6.5", 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.4"
version = "0.6.5"
authors = ["Eric Kidd <[email protected]>"]

description = "Unofficial BigML client bindings"
Expand Down

0 comments on commit 4fd6a93

Please sign in to comment.