From 6910ff51f244152d85c452d578be4d4cde090ed4 Mon Sep 17 00:00:00 2001
From: alecmocatta
Date: Tue, 10 Sep 2019 23:59:07 +0100
Subject: [PATCH] v0.1.2
---
Cargo.toml | 20 ++++++++++----------
README.md | 2 +-
amadeus-aws/Cargo.toml | 6 +++---
amadeus-aws/src/lib.rs | 2 ++
amadeus-commoncrawl/Cargo.toml | 8 ++++----
amadeus-commoncrawl/src/lib.rs | 2 ++
amadeus-core/Cargo.toml | 4 ++--
amadeus-core/src/lib.rs | 1 +
amadeus-derive/Cargo.toml | 4 ++--
amadeus-derive/src/lib.rs | 1 +
amadeus-parquet/Cargo.toml | 8 ++++----
amadeus-parquet/src/lib.rs | 1 +
amadeus-postgres/Cargo.toml | 8 ++++----
amadeus-postgres/src/lib.rs | 1 +
amadeus-serde/Cargo.toml | 8 ++++----
amadeus-serde/src/lib.rs | 1 +
amadeus-types/Cargo.toml | 4 ++--
amadeus-types/src/lib.rs | 1 +
src/lib.rs | 2 +-
19 files changed, 47 insertions(+), 37 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 4c5d3f24..9cbce02a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "amadeus"
-version = "0.1.1"
+version = "0.1.2"
license = "Apache-2.0"
authors = ["Alec Mocatta "]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -14,7 +14,7 @@ parquet postgres aws s3 cloudfront elb json csv logs hadoop hdfs arrow common cr
"""
repository = "https://github.com/alecmocatta/amadeus"
homepage = "https://github.com/alecmocatta/amadeus"
-documentation = "https://docs.rs/amadeus/0.1.1"
+documentation = "https://docs.rs/amadeus/0.1.2"
readme = "README.md"
edition = "2018"
@@ -35,14 +35,14 @@ json = ["amadeus-serde", "amadeus-derive/serde"]
features = ["constellation", "aws", "commoncrawl", "postgres", "csv", "json"]
[dependencies]
-amadeus-core = { version = "0.1.0", path = "amadeus-core" }
-amadeus-derive = { version = "0.1.0", path = "amadeus-derive" }
-amadeus-types = { version = "0.1.0", path = "amadeus-types" }
-amadeus-aws = { version = "0.1.0", path = "amadeus-aws", optional = true }
-amadeus-commoncrawl = { version = "0.1.0", path = "amadeus-commoncrawl", optional = true }
-amadeus-parquet = { version = "0.1.0", path = "amadeus-parquet", optional = true }
-amadeus-postgres = { version = "0.1.0", path = "amadeus-postgres", optional = true }
-amadeus-serde = { version = "0.1.0", path = "amadeus-serde", optional = true }
+amadeus-core = { version = "=0.1.2", path = "amadeus-core" }
+amadeus-derive = { version = "=0.1.2", path = "amadeus-derive" }
+amadeus-types = { version = "=0.1.2", path = "amadeus-types" }
+amadeus-aws = { version = "=0.1.2", path = "amadeus-aws", optional = true }
+amadeus-commoncrawl = { version = "=0.1.2", path = "amadeus-commoncrawl", optional = true }
+amadeus-parquet = { version = "=0.1.2", path = "amadeus-parquet", optional = true }
+amadeus-postgres = { version = "=0.1.2", path = "amadeus-postgres", optional = true }
+amadeus-serde = { version = "=0.1.2", path = "amadeus-serde", optional = true }
constellation-rs = { version = "0.1", default-features = false, optional = true }
futures-preview = "=0.3.0-alpha.18"
serde = { version = "1.0", features = ["derive"] }
diff --git a/README.md b/README.md
index d4d2aefd..0ddf2546 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@
- Docs
+ Docs
diff --git a/amadeus-aws/Cargo.toml b/amadeus-aws/Cargo.toml
index 978f2e02..ce20a03b 100644
--- a/amadeus-aws/Cargo.toml
+++ b/amadeus-aws/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "amadeus-aws"
-version = "0.1.1"
+version = "0.1.2"
license = "Apache-2.0"
authors = ["Alec Mocatta "]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust.
"""
repository = "https://github.com/alecmocatta/amadeus"
homepage = "https://github.com/alecmocatta/amadeus"
-documentation = "https://docs.rs/amadeus/0.1.1"
+documentation = "https://docs.rs/amadeus/0.1.2"
readme = "README.md"
edition = "2018"
@@ -19,7 +19,7 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }
[dependencies]
-amadeus-core = { version = "0.1", path = "../amadeus-core" }
+amadeus-core = { version = "=0.1.2", path = "../amadeus-core" }
chrono = "0.4"
flate2 = "1.0"
futures-01 = { package = "futures", version = "0.1" }
diff --git a/amadeus-aws/src/lib.rs b/amadeus-aws/src/lib.rs
index 21f25064..ee7c3ea7 100644
--- a/amadeus-aws/src/lib.rs
+++ b/amadeus-aws/src/lib.rs
@@ -1,3 +1,5 @@
+#![doc(html_root_url = "https://docs.rs/amadeus-aws/0.1.2")]
+
mod cloudfront;
mod file;
diff --git a/amadeus-commoncrawl/Cargo.toml b/amadeus-commoncrawl/Cargo.toml
index 87ff2b91..c2af8fcf 100644
--- a/amadeus-commoncrawl/Cargo.toml
+++ b/amadeus-commoncrawl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "amadeus-commoncrawl"
-version = "0.1.1"
+version = "0.1.2"
license = "MIT OR Apache-2.0"
authors = ["Stephen Becker IV ", "Alec Mocatta "]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust.
"""
repository = "https://github.com/alecmocatta/amadeus"
homepage = "https://github.com/alecmocatta/amadeus"
-documentation = "https://docs.rs/amadeus/0.1.1"
+documentation = "https://docs.rs/amadeus/0.1.2"
readme = "README.md"
edition = "2018"
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }
[dependencies]
-amadeus-core = { version = "0.1", path = "../amadeus-core" }
-amadeus-types = { version = "0.1", path = "../amadeus-types" }
+amadeus-core = { version = "=0.1.2", path = "../amadeus-core" }
+amadeus-types = { version = "=0.1.2", path = "../amadeus-types" }
flate2 = "1.0"
reqwest = "0.9"
reqwest_resume = "0.2"
diff --git a/amadeus-commoncrawl/src/lib.rs b/amadeus-commoncrawl/src/lib.rs
index 642fa0d9..aa29596a 100644
--- a/amadeus-commoncrawl/src/lib.rs
+++ b/amadeus-commoncrawl/src/lib.rs
@@ -1,3 +1,5 @@
+#![doc(html_root_url = "https://docs.rs/amadeus-commoncrawl/0.1.2")]
+
mod commoncrawl;
mod parser;
diff --git a/amadeus-core/Cargo.toml b/amadeus-core/Cargo.toml
index 4404123e..f6ac49f9 100644
--- a/amadeus-core/Cargo.toml
+++ b/amadeus-core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "amadeus-core"
-version = "0.1.1"
+version = "0.1.2"
license = "Apache-2.0"
authors = ["Alec Mocatta "]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust.
"""
repository = "https://github.com/alecmocatta/amadeus"
homepage = "https://github.com/alecmocatta/amadeus"
-documentation = "https://docs.rs/amadeus/0.1.1"
+documentation = "https://docs.rs/amadeus/0.1.2"
readme = "README.md"
edition = "2018"
diff --git a/amadeus-core/src/lib.rs b/amadeus-core/src/lib.rs
index 572061e1..bfd195b4 100644
--- a/amadeus-core/src/lib.rs
+++ b/amadeus-core/src/lib.rs
@@ -1,3 +1,4 @@
+#![doc(html_root_url = "https://docs.rs/amadeus-core/0.1.2")]
#![feature(atomic_min_max)]
#![feature(specialization)]
#![feature(never_type)]
diff --git a/amadeus-derive/Cargo.toml b/amadeus-derive/Cargo.toml
index 28e2b0c2..0ab2e690 100644
--- a/amadeus-derive/Cargo.toml
+++ b/amadeus-derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "amadeus-derive"
-version = "0.1.1"
+version = "0.1.2"
license = "Apache-2.0"
authors = ["Alec Mocatta "]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust.
"""
repository = "https://github.com/alecmocatta/amadeus"
homepage = "https://github.com/alecmocatta/amadeus"
-documentation = "https://docs.rs/amadeus/0.1.1"
+documentation = "https://docs.rs/amadeus/0.1.2"
readme = "README.md"
edition = "2018"
diff --git a/amadeus-derive/src/lib.rs b/amadeus-derive/src/lib.rs
index d15cf7e1..54bb202d 100644
--- a/amadeus-derive/src/lib.rs
+++ b/amadeus-derive/src/lib.rs
@@ -15,6 +15,7 @@
// specific language governing permissions and limitations
// under the License.
+#![doc(html_root_url = "https://docs.rs/amadeus-derive/0.1.2")]
#![recursion_limit = "400"]
#![allow(clippy::useless_let_if_seq)]
diff --git a/amadeus-parquet/Cargo.toml b/amadeus-parquet/Cargo.toml
index 7cbe2a25..57b319dc 100644
--- a/amadeus-parquet/Cargo.toml
+++ b/amadeus-parquet/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "amadeus-parquet"
-version = "0.1.1"
+version = "0.1.2"
license = "Apache-2.0"
authors = ["Alec Mocatta ", "Apache Arrow "]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -10,7 +10,7 @@ An Apache Parquet implementation in Rust.
"""
repository = "https://github.com/alecmocatta/amadeus"
homepage = "https://github.com/alecmocatta/amadeus"
-documentation = "https://docs.rs/amadeus/0.1.1"
+documentation = "https://docs.rs/amadeus/0.1.2"
readme = "README.md"
edition = "2018"
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }
[dependencies]
-amadeus-core = { version = "0.1", path = "../amadeus-core" }
-amadeus-types = { version = "0.1", path = "../amadeus-types" }
+amadeus-core = { version = "=0.1.2", path = "../amadeus-core" }
+amadeus-types = { version = "=0.1.2", path = "../amadeus-types" }
brotli = "3.3"
byteorder = "1.2"
chrono = "0.4"
diff --git a/amadeus-parquet/src/lib.rs b/amadeus-parquet/src/lib.rs
index 7500b074..6e33f657 100644
--- a/amadeus-parquet/src/lib.rs
+++ b/amadeus-parquet/src/lib.rs
@@ -1,3 +1,4 @@
+#![doc(html_root_url = "https://docs.rs/amadeus-parquet/0.1.2")]
#![feature(specialization)]
#![feature(type_alias_impl_trait)]
#![feature(read_initializer)]
diff --git a/amadeus-postgres/Cargo.toml b/amadeus-postgres/Cargo.toml
index e331e7e4..c55efc29 100644
--- a/amadeus-postgres/Cargo.toml
+++ b/amadeus-postgres/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "amadeus-postgres"
-version = "0.1.1"
+version = "0.1.2"
license = "Apache-2.0"
authors = ["Alec Mocatta "]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust.
"""
repository = "https://github.com/alecmocatta/amadeus"
homepage = "https://github.com/alecmocatta/amadeus"
-documentation = "https://docs.rs/amadeus/0.1.1"
+documentation = "https://docs.rs/amadeus/0.1.2"
readme = "README.md"
edition = "2018"
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }
[dependencies]
-amadeus-core = { version = "0.1", path = "../amadeus-core" }
-amadeus-types = { version = "0.1", path = "../amadeus-types" }
+amadeus-core = { version = "=0.1.2", path = "../amadeus-core" }
+amadeus-types = { version = "=0.1.2", path = "../amadeus-types" }
serde = { version = "1.0", features = ["derive"] }
postgres = { version = "0.15", features = ["with-chrono"] }
serde_closure = "0.1"
diff --git a/amadeus-postgres/src/lib.rs b/amadeus-postgres/src/lib.rs
index e14272f9..454909cf 100644
--- a/amadeus-postgres/src/lib.rs
+++ b/amadeus-postgres/src/lib.rs
@@ -1,3 +1,4 @@
+#![doc(html_root_url = "https://docs.rs/amadeus-postgres/0.1.2")]
#![feature(specialization)]
mod impls;
diff --git a/amadeus-serde/Cargo.toml b/amadeus-serde/Cargo.toml
index 19cc7c5f..dfdc4de3 100644
--- a/amadeus-serde/Cargo.toml
+++ b/amadeus-serde/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "amadeus-serde"
-version = "0.1.1"
+version = "0.1.2"
license = "Apache-2.0"
authors = ["Alec Mocatta "]
categories = ["concurrency", "science", "database", "parser-implementations", "text-processing"]
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust.
"""
repository = "https://github.com/alecmocatta/amadeus"
homepage = "https://github.com/alecmocatta/amadeus"
-documentation = "https://docs.rs/amadeus/0.1.1"
+documentation = "https://docs.rs/amadeus/0.1.2"
readme = "README.md"
edition = "2018"
@@ -19,8 +19,8 @@ azure-devops = { project = "alecmocatta/amadeus", pipeline = "tests" }
maintenance = { status = "actively-developed" }
[dependencies]
-amadeus-core = { version = "0.1", path = "../amadeus-core" }
-amadeus-types = { version = "0.1", path = "../amadeus-types" }
+amadeus-core = { version = "=0.1.2", path = "../amadeus-core" }
+amadeus-types = { version = "=0.1.2", path = "../amadeus-types" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.0"
diff --git a/amadeus-serde/src/lib.rs b/amadeus-serde/src/lib.rs
index d7e04a65..b9c681e8 100644
--- a/amadeus-serde/src/lib.rs
+++ b/amadeus-serde/src/lib.rs
@@ -1,3 +1,4 @@
+#![doc(html_root_url = "https://docs.rs/amadeus-serde/0.1.2")]
#![feature(type_alias_impl_trait)]
#![feature(specialization)]
diff --git a/amadeus-types/Cargo.toml b/amadeus-types/Cargo.toml
index fb12f0f8..131eac18 100644
--- a/amadeus-types/Cargo.toml
+++ b/amadeus-types/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "amadeus-types"
-version = "0.1.1"
+version = "0.1.2"
license = "Apache-2.0"
authors = ["Alec Mocatta "]
categories = ["concurrency", "science", "database", "date-and-time", "data-structures"]
@@ -10,7 +10,7 @@ Harmonious distributed data analysis in Rust.
"""
repository = "https://github.com/alecmocatta/amadeus"
homepage = "https://github.com/alecmocatta/amadeus"
-documentation = "https://docs.rs/amadeus/0.1.1"
+documentation = "https://docs.rs/amadeus/0.1.2"
readme = "README.md"
edition = "2018"
diff --git a/amadeus-types/src/lib.rs b/amadeus-types/src/lib.rs
index a867a1d8..9f525e8b 100644
--- a/amadeus-types/src/lib.rs
+++ b/amadeus-types/src/lib.rs
@@ -1,3 +1,4 @@
+#![doc(html_root_url = "https://docs.rs/amadeus-types/0.1.2")]
#![feature(specialization)]
//! Implementations of Rust types that correspond to Parquet logical types.
diff --git a/src/lib.rs b/src/lib.rs
index 64afea33..0e7891d9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -4,7 +4,7 @@
//!
//! This library is very nascent. 3 parts: process pool; sources/sinks (Data/Value); analytics;
-#![doc(html_root_url = "https://docs.rs/amadeus/0.1.1")]
+#![doc(html_root_url = "https://docs.rs/amadeus/0.1.2")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/alecmocatta/amadeus/master/logo.svg?sanitize=true"
)]