Skip to content

Commit

Permalink
v0.6.2: Fix *Update structs
Browse files Browse the repository at this point in the history
These structs could no longer be used normally to perform updates. They
have been fixed.
  • Loading branch information
emk committed Mar 26, 2020
1 parent 6298571 commit 3bb6b49
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 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.1"
version = "0.6.2"
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.1", path = "../bigml" }
bigml = { version = "=0.6.2", path = "../bigml" }
bytes = "0.5.3"
common_failures = "0.1.1"
# This makes the executable bigger, but it makes --help much nicer.
Expand Down
4 changes: 2 additions & 2 deletions bigml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bigml"
version = "0.6.1"
version = "0.6.2"
authors = ["Eric Kidd <[email protected]>"]

description = "Unofficial BigML client bindings"
Expand All @@ -15,7 +15,7 @@ edition = "2018"
env_logger = "0.7"

[dependencies]
bigml_derive = { version = "0.3.0", path = "../bigml_derive" }
bigml_derive = { version = "0.4.0", path = "../bigml_derive" }
bytes = "0.5.3"
chrono = { version = "0.4", features = ["serde"] }
failure = "0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion bigml_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bigml_derive"
version = "0.3.0"
version = "0.4.0"
authors = ["Eric Kidd <[email protected]>"]

description = "Internal `derive` support for unofficial BigML client bindings"
Expand Down

0 comments on commit 3bb6b49

Please sign in to comment.