Skip to content

Commit b6d9119

Browse files
committed
v0.4.0
1 parent e0331db commit b6d9119

File tree

29 files changed

+51
-59
lines changed

29 files changed

+51
-59
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.3.7"
5+
version = "0.4.0"
66
license = "Apache-2.0"
77
authors = ["Alec Mocatta <alec@mocatta.net>"]
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.3.7", path = "amadeus-core" }
40-
amadeus-derive = { version = "=0.3.7", path = "amadeus-derive" }
41-
amadeus-types = { version = "=0.3.7", path = "amadeus-types" }
42-
amadeus-aws = { version = "=0.3.7", path = "amadeus-aws", optional = true }
43-
amadeus-commoncrawl = { version = "=0.3.7", path = "amadeus-commoncrawl", optional = true }
44-
amadeus-parquet = { version = "=0.3.7", path = "amadeus-parquet", optional = true }
45-
amadeus-postgres = { version = "=0.3.7", path = "amadeus-postgres", optional = true }
46-
amadeus-serde = { version = "=0.3.7", path = "amadeus-serde", optional = true }
47-
amadeus-streaming = { version = "=0.3.7", path = "amadeus-streaming" }
39+
amadeus-core = { version = "=0.4.0", path = "amadeus-core" }
40+
amadeus-derive = { version = "=0.4.0", path = "amadeus-derive" }
41+
amadeus-types = { version = "=0.4.0", path = "amadeus-types" }
42+
amadeus-aws = { version = "=0.4.0", path = "amadeus-aws", optional = true }
43+
amadeus-commoncrawl = { version = "=0.4.0", path = "amadeus-commoncrawl", optional = true }
44+
amadeus-parquet = { version = "=0.4.0", path = "amadeus-parquet", optional = true }
45+
amadeus-postgres = { version = "=0.4.0", path = "amadeus-postgres", optional = true }
46+
amadeus-serde = { version = "=0.4.0", path = "amadeus-serde", optional = true }
47+
amadeus-streaming = { version = "=0.4.0", 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.3.7"
3+
version = "0.4.0"
44
license = "Apache-2.0"
55
authors = ["Alec Mocatta <alec@mocatta.net>"]
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.7", path = "../amadeus-core" }
23-
amadeus-types = { version = "=0.3.7", path = "../amadeus-types" }
22+
amadeus-core = { version = "=0.4.0", path = "../amadeus-core" }
23+
amadeus-types = { version = "=0.4.0", 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/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# amadeus-aws
22

3-
This subcrate of the [`amadeus`](https://github.com/alecmocatta/amadeus) project includes a filesystem backend for S3 and a source for AWS Cloudfront logs.
3+
This subcrate of the [`amadeus`](https://github.com/constellation-rs/amadeus) project includes a filesystem backend for S3 and a source for AWS Cloudfront logs.

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.7")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-aws/0.4.0")]
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.7"
3+
version = "0.4.0"
44
license = "MIT OR Apache-2.0"
55
authors = ["Stephen Becker IV <github@deathbyescalator.com>", "Alec Mocatta <alec@mocatta.net>"]
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.7", path = "../amadeus-core" }
23-
amadeus-types = { version = "=0.3.7", path = "../amadeus-types" }
22+
amadeus-core = { version = "=0.4.0", path = "../amadeus-core" }
23+
amadeus-types = { version = "=0.4.0", 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/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# amadeus-commoncrawl
22

3-
This subcrate of the [`amadeus`](https://github.com/alecmocatta/amadeus) project includes a source for the CommonCrawl datasets.
3+
This subcrate of the [`amadeus`](https://github.com/constellation-rs/amadeus) project includes a source for the CommonCrawl datasets.

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.7")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-commoncrawl/0.4.0")]
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.3.7"
3+
version = "0.4.0"
44
license = "Apache-2.0"
55
authors = ["Alec Mocatta <alec@mocatta.net>"]
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.3.7", path = "../amadeus-streaming" }
22+
amadeus-streaming = { version = "=0.4.0", path = "../amadeus-streaming" }
2323
async-trait = "0.1"
2424
derive-new = "0.5"
2525
educe = "0.4"

amadeus-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# amadeus-core
22

3-
This subcrate of the [`amadeus`](https://github.com/alecmocatta/amadeus) project includes fundamental definitions including `DistributedIterator` and `ProcessPool`.
3+
This subcrate of the [`amadeus`](https://github.com/constellation-rs/amadeus) project includes fundamental definitions including `DistributedIterator` and `ProcessPool`.

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.7")]
9+
#![doc(html_root_url = "https://docs.rs/amadeus-core/0.4.0")]
1010
#![cfg_attr(nightly, feature(unboxed_closures))]
1111
#![recursion_limit = "25600"]
1212
#![warn(

0 commit comments

Comments
 (0)