Skip to content

Commit 33522e8

Browse files
committed
0.3.2
1 parent 8a60631 commit 33522e8

File tree

18 files changed

+37
-37
lines changed

18 files changed

+37
-37
lines changed

Cargo.toml

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

33
[package]
44
name = "amadeus"
5-
version = "0.3.1"
5+
version = "0.3.2"
66
license = "Apache-2.0"
77
authors = ["Alec Mocatta <[email protected]>"]
88
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -35,14 +35,14 @@ json = ["amadeus-serde", "amadeus-derive/serde"]
3535
features = ["constellation", "aws", "commoncrawl", "parquet", "postgres", "csv", "json"]
3636

3737
[dependencies]
38-
amadeus-core = { version = "=0.3.1", path = "amadeus-core" }
39-
amadeus-derive = { version = "=0.3.1", path = "amadeus-derive" }
40-
amadeus-types = { version = "=0.3.1", path = "amadeus-types" }
41-
amadeus-aws = { version = "=0.3.1", path = "amadeus-aws", optional = true }
42-
amadeus-commoncrawl = { version = "=0.3.1", path = "amadeus-commoncrawl", optional = true }
43-
amadeus-parquet = { version = "=0.3.1", path = "amadeus-parquet", optional = true }
44-
amadeus-postgres = { version = "=0.3.1", path = "amadeus-postgres", optional = true }
45-
amadeus-serde = { version = "=0.3.1", path = "amadeus-serde", optional = true }
38+
amadeus-core = { version = "=0.3.2", path = "amadeus-core" }
39+
amadeus-derive = { version = "=0.3.2", path = "amadeus-derive" }
40+
amadeus-types = { version = "=0.3.2", path = "amadeus-types" }
41+
amadeus-aws = { version = "=0.3.2", path = "amadeus-aws", optional = true }
42+
amadeus-commoncrawl = { version = "=0.3.2", path = "amadeus-commoncrawl", optional = true }
43+
amadeus-parquet = { version = "=0.3.2", path = "amadeus-parquet", optional = true }
44+
amadeus-postgres = { version = "=0.3.2", path = "amadeus-postgres", optional = true }
45+
amadeus-serde = { version = "=0.3.2", path = "amadeus-serde", optional = true }
4646
async-channel = "1.1"
4747
constellation-rs = { version = "0.2.0-alpha.2", default-features = false, optional = true }
4848
derive-new = "0.5"

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.3.1"
3+
version = "0.3.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.3.1", path = "../amadeus-core" }
23-
amadeus-types = { version = "=0.3.1", path = "../amadeus-types" }
22+
amadeus-core = { version = "=0.3.2", path = "../amadeus-core" }
23+
amadeus-types = { version = "=0.3.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.3.1")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-aws/0.3.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.3.1"
3+
version = "0.3.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.3.1", path = "../amadeus-core" }
23-
amadeus-types = { version = "=0.3.1", path = "../amadeus-types" }
22+
amadeus-core = { version = "=0.3.2", path = "../amadeus-core" }
23+
amadeus-types = { version = "=0.3.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.3.1")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-commoncrawl/0.3.2")]
1010
#![cfg_attr(nightly, feature(type_alias_impl_trait))]
1111
#![warn(
1212
// missing_copy_implementations,

amadeus-core/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-core"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
license = "Apache-2.0"
55
authors = ["Alec Mocatta <[email protected]>"]
66
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]

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.3.1")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-core/0.3.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.3.1"
3+
version = "0.3.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.3.1")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-derive/0.3.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.3.1"
3+
version = "0.3.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.3.1", path = "../amadeus-core" }
23-
amadeus-types = { version = "=0.3.1", path = "../amadeus-types" }
22+
amadeus-core = { version = "=0.3.2", path = "../amadeus-core" }
23+
amadeus-types = { version = "=0.3.2", path = "../amadeus-types" }
2424
async-trait = "0.1"
2525
brotli = "3.3"
2626
byteorder = "1.2"

0 commit comments

Comments
 (0)