Skip to content

Commit fb9ee3b

Browse files
authored
Merge pull request #109 from constellation-rs/v0.4.2
Release v0.4.2
2 parents 4c2d2ec + aecc8c9 commit fb9ee3b

File tree

24 files changed

+47
-41
lines changed

24 files changed

+47
-41
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "amadeus"
5-
version = "0.4.1"
5+
version = "0.4.2"
66
license = "Apache-2.0"
77
authors = ["Alec Mocatta <[email protected]>"]
88
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -36,15 +36,15 @@ bench = ["serde-csv", "once_cell", "arrow-parquet", "rayon"]
3636
features = ["constellation", "aws", "commoncrawl", "parquet", "postgres", "csv", "json"]
3737

3838
[dependencies]
39-
amadeus-core = { version = "=0.4.1", path = "amadeus-core" }
40-
amadeus-derive = { version = "=0.4.1", path = "amadeus-derive" }
41-
amadeus-types = { version = "=0.4.1", path = "amadeus-types" }
42-
amadeus-aws = { version = "=0.4.1", path = "amadeus-aws", optional = true }
43-
amadeus-commoncrawl = { version = "=0.4.1", path = "amadeus-commoncrawl", optional = true }
44-
amadeus-parquet = { version = "=0.4.1", path = "amadeus-parquet", optional = true }
45-
amadeus-postgres = { version = "=0.4.1", path = "amadeus-postgres", optional = true }
46-
amadeus-serde = { version = "=0.4.1", path = "amadeus-serde", optional = true }
47-
amadeus-streaming = { version = "=0.4.1", path = "amadeus-streaming" }
39+
amadeus-core = { version = "=0.4.2", path = "amadeus-core" }
40+
amadeus-derive = { version = "=0.4.2", path = "amadeus-derive" }
41+
amadeus-types = { version = "=0.4.2", path = "amadeus-types" }
42+
amadeus-aws = { version = "=0.4.2", path = "amadeus-aws", optional = true }
43+
amadeus-commoncrawl = { version = "=0.4.2", path = "amadeus-commoncrawl", optional = true }
44+
amadeus-parquet = { version = "=0.4.2", path = "amadeus-parquet", optional = true }
45+
amadeus-postgres = { version = "=0.4.2", path = "amadeus-postgres", optional = true }
46+
amadeus-serde = { version = "=0.4.2", path = "amadeus-serde", optional = true }
47+
amadeus-streaming = { version = "=0.4.2", path = "amadeus-streaming" }
4848
async-channel = "1.1"
4949
bincode = { version = "1.3", optional = true }
5050
constellation-rs = { version = "0.2.0-alpha.2", default-features = false, optional = true }

amadeus-aws/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "amadeus-aws"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
license = "Apache-2.0"
55
authors = ["Alec Mocatta <[email protected]>"]
66
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2
1919
maintenance = { status = "actively-developed" }
2020

2121
[dependencies]
22-
amadeus-core = { version = "=0.4.1", path = "../amadeus-core" }
23-
amadeus-types = { version = "=0.4.1", path = "../amadeus-types" }
22+
amadeus-core = { version = "=0.4.2", path = "../amadeus-core" }
23+
amadeus-types = { version = "=0.4.2", path = "../amadeus-types" }
2424
async-compression = { version = "0.3.3", features = ["gzip", "futures-bufread"] }
2525
async-trait = "0.1"
2626
chrono = { version = "0.4", default-features = false }

amadeus-aws/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. These types are re-exposed in [`amadeus::source`](https://docs.rs/amadeus/0.3/amadeus/source/index.html).
88
9-
#![doc(html_root_url = "https://docs.rs/amadeus-aws/0.4.1")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-aws/0.4.2")]
1010
#![cfg_attr(nightly, feature(type_alias_impl_trait))]
1111
#![warn(
1212
// missing_copy_implementations,

amadeus-commoncrawl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "amadeus-commoncrawl"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
license = "MIT OR Apache-2.0"
55
authors = ["Stephen Becker IV <[email protected]>", "Alec Mocatta <[email protected]>"]
66
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2
1919
maintenance = { status = "actively-developed" }
2020

2121
[dependencies]
22-
amadeus-core = { version = "=0.4.1", path = "../amadeus-core" }
23-
amadeus-types = { version = "=0.4.1", path = "../amadeus-types" }
22+
amadeus-core = { version = "=0.4.2", path = "../amadeus-core" }
23+
amadeus-types = { version = "=0.4.2", path = "../amadeus-types" }
2424
async-compression = { version = "0.3.3", features = ["gzip", "futures-bufread"] }
2525
futures = "0.3"
2626
nom = "4.2.3"

amadeus-commoncrawl/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. These types are re-exposed in [`amadeus::source`](https://docs.rs/amadeus/0.3/amadeus/source/index.html).
88
9-
#![doc(html_root_url = "https://docs.rs/amadeus-commoncrawl/0.4.1")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-commoncrawl/0.4.2")]
1010
#![cfg_attr(nightly, feature(type_alias_impl_trait))]
1111
#![warn(
1212
// missing_copy_implementations,

amadeus-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "amadeus-core"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
license = "Apache-2.0"
55
authors = ["Alec Mocatta <[email protected]>"]
66
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -19,7 +19,7 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2
1919
maintenance = { status = "actively-developed" }
2020

2121
[dependencies]
22-
amadeus-streaming = { version = "=0.4.1", path = "../amadeus-streaming" }
22+
amadeus-streaming = { version = "=0.4.2", path = "../amadeus-streaming" }
2323
async-trait = "0.1"
2424
derive-new = "0.5"
2525
educe = "0.4"

amadeus-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. All functionality is re-exposed in [`amadeus`](https://docs.rs/amadeus/0.3/amadeus/).
88
9-
#![doc(html_root_url = "https://docs.rs/amadeus-core/0.4.1")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-core/0.4.2")]
1010
#![cfg_attr(nightly, feature(unboxed_closures))]
1111
#![recursion_limit = "25600"]
1212
#![warn(

amadeus-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "amadeus-derive"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
license = "Apache-2.0"
55
authors = ["Alec Mocatta <[email protected]>"]
66
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]

amadeus-derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! This is a support crate of [Amadeus](https://github.com/constellation-rs/amadeus) and is not intended to be used directly. This macro is re-exposed as [`amadeus::data::Data`](https://docs.rs/amadeus/0.3/amadeus/data/derive.Data.html).
88
9-
#![doc(html_root_url = "https://docs.rs/amadeus-derive/0.4.1")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-derive/0.4.2")]
1010
#![recursion_limit = "400"]
1111
#![warn(
1212
missing_copy_implementations,

amadeus-parquet/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "amadeus-parquet"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
license = "Apache-2.0"
55
authors = ["Alec Mocatta <[email protected]>", "Apache Arrow <[email protected]>"]
66
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests", build = "2
1919
maintenance = { status = "actively-developed" }
2020

2121
[dependencies]
22-
amadeus-core = { version = "=0.4.1", path = "../amadeus-core" }
23-
amadeus-types = { version = "=0.4.1", path = "../amadeus-types" }
22+
amadeus-core = { version = "=0.4.2", path = "../amadeus-core" }
23+
amadeus-types = { version = "=0.4.2", path = "../amadeus-types" }
2424
async-trait = "0.1"
2525
brotli = "3.3"
2626
byteorder = "1.2"

0 commit comments

Comments
 (0)