Skip to content

Commit

Permalink
v0.4.0-alpha.3: Allow sources be created without a name
Browse files Browse the repository at this point in the history
  • Loading branch information
emk committed Sep 7, 2019
1 parent 532631f commit df4b712
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
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.4.0-alpha.2"
version = "0.4.0-alpha.3"
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.4.0-alpha.2", path = "../bigml" }
bigml = { version = "=0.4.0-alpha.3", path = "../bigml" }
bytes = "0.4.12"
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.4.0-alpha.2"
version = "0.4.0-alpha.3"
authors = ["Eric Kidd <[email protected]>"]

description = "Unofficial BigML client bindings"
Expand Down
1 change: 1 addition & 0 deletions bigml/src/resource/source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ pub struct Args {
pub disable_datetime: Option<bool>,

/// The name of this source.
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<String>,

/// Placeholder to allow extensibility without breaking the API.
Expand Down

0 comments on commit df4b712

Please sign in to comment.