From e48ee4228957be8d095bbd09f5c6ed71b951bea1 Mon Sep 17 00:00:00 2001 From: tonymushah Date: Wed, 20 Nov 2024 17:44:53 +0300 Subject: [PATCH 1/8] readme updates --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7742109b..ae72e42c 100644 --- a/README.md +++ b/README.md @@ -89,8 +89,8 @@ Add `mangadex-api` to your dependencies: [dependencies] # ... # Types and schemas are always required -mangadex-api-types-rust = "0.9" -mangadex-api-schema-rust = "0.9" +mangadex-api-types-rust = "0.10" +mangadex-api-schema-rust = "0.10" mangadex-api = "3.4" ``` From 9a4c8aebe0cbfbed1599e64307f9ecd14b75321a Mon Sep 17 00:00:00 2001 From: tonymushah Date: Wed, 20 Nov 2024 17:46:35 +0300 Subject: [PATCH 2/8] readme update for types --- mangadex-api-types/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mangadex-api-types/README.md b/mangadex-api-types/README.md index 282785bd..59e5731e 100644 --- a/mangadex-api-types/README.md +++ b/mangadex-api-types/README.md @@ -14,7 +14,7 @@ A collection of enums and static data for the [mangadex-api](https://github.com/ ## Install ```toml -mangadex-api-types-rust = "0.9" +mangadex-api-types-rust = "0.10" ``` ## Features From 543dac76a879f647c151676f767cb27bec7f069f Mon Sep 17 00:00:00 2001 From: tonymushah Date: Wed, 20 Nov 2024 17:55:01 +0300 Subject: [PATCH 3/8] updated readme for the `schema` crate --- mangadex-api-schema/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mangadex-api-schema/README.md b/mangadex-api-schema/README.md index b419bb38..3d9bb3da 100644 --- a/mangadex-api-schema/README.md +++ b/mangadex-api-schema/README.md @@ -14,7 +14,7 @@ A collection of structs and schemas for the [mangadex-api](https://github.com/to ## Install ```toml -mangadex-api-schema-rust = "0.9" +mangadex-api-schema-rust = "0.10" ``` ## Features From 738ff5d9bbcf98faf6aa2109ac0175630443cecf Mon Sep 17 00:00:00 2001 From: tonymushah Date: Wed, 20 Nov 2024 17:56:16 +0300 Subject: [PATCH 4/8] added `version` for schema --- mangadex-api-schema/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/mangadex-api-schema/Cargo.toml b/mangadex-api-schema/Cargo.toml index 5f3214bb..fbce933f 100644 --- a/mangadex-api-schema/Cargo.toml +++ b/mangadex-api-schema/Cargo.toml @@ -52,6 +52,7 @@ workspace = true workspace = true [dependencies.mangadex-api-types] +version = "0.10" workspace = true [features] From 72748e592afcabf0d549b1096c469f6f6a78cf02 Mon Sep 17 00:00:00 2001 From: tonymushah Date: Wed, 20 Nov 2024 17:57:58 +0300 Subject: [PATCH 5/8] Some schema changes --- mangadex-api-schema/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/mangadex-api-schema/Cargo.toml b/mangadex-api-schema/Cargo.toml index fbce933f..23cfb893 100644 --- a/mangadex-api-schema/Cargo.toml +++ b/mangadex-api-schema/Cargo.toml @@ -53,6 +53,7 @@ workspace = true [dependencies.mangadex-api-types] version = "0.10" +package = "mangadex-api-types-rust" workspace = true [features] From 19b02c1c98aed32b14a432bc5c205f2c9be1b0ff Mon Sep 17 00:00:00 2001 From: tonymushah Date: Wed, 20 Nov 2024 18:00:16 +0300 Subject: [PATCH 6/8] workspace toml update --- Cargo.toml | 3 +++ mangadex-api-schema/Cargo.toml | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bdc0dd46..7134683e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,12 +51,15 @@ serde_qs = "0.13" [workspace.dependencies.mangadex-api-types] package = "mangadex-api-types-rust" path = "./mangadex-api-types" +version = "0.10" default-features = false [workspace.dependencies.mangadex-api-schema] package = "mangadex-api-schema-rust" path = "./mangadex-api-schema" +version = "0.10" default-features = false [workspace.dependencies.mangadex-api] path = "../mangadex-api" +version = "3.4" \ No newline at end of file diff --git a/mangadex-api-schema/Cargo.toml b/mangadex-api-schema/Cargo.toml index 23cfb893..5f3214bb 100644 --- a/mangadex-api-schema/Cargo.toml +++ b/mangadex-api-schema/Cargo.toml @@ -52,8 +52,6 @@ workspace = true workspace = true [dependencies.mangadex-api-types] -version = "0.10" -package = "mangadex-api-types-rust" workspace = true [features] From bfca70626faaf2cebca13fededd6a295a5db905c Mon Sep 17 00:00:00 2001 From: tonymushah Date: Wed, 20 Nov 2024 19:31:07 +0300 Subject: [PATCH 7/8] more lib.rs updates --- mangadex-api/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mangadex-api/src/lib.rs b/mangadex-api/src/lib.rs index dfb1dd72..2b3ca66b 100644 --- a/mangadex-api/src/lib.rs +++ b/mangadex-api/src/lib.rs @@ -1,4 +1,4 @@ -#![doc = include_str!("../../README.md")] +#![doc = include_str!("../../../../README.md")] #![forbid(unsafe_code)] #![cfg_attr( not(any(feature = "multi-thread", feature = "tokio-multi-thread")), From 1516bcdcdd9b98e1b9a5581b8c0aa47d79ecf0c6 Mon Sep 17 00:00:00 2001 From: tonymushah Date: Wed, 20 Nov 2024 20:27:31 +0300 Subject: [PATCH 8/8] revert --- mangadex-api/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mangadex-api/src/lib.rs b/mangadex-api/src/lib.rs index 2b3ca66b..dfb1dd72 100644 --- a/mangadex-api/src/lib.rs +++ b/mangadex-api/src/lib.rs @@ -1,4 +1,4 @@ -#![doc = include_str!("../../../../README.md")] +#![doc = include_str!("../../README.md")] #![forbid(unsafe_code)] #![cfg_attr( not(any(feature = "multi-thread", feature = "tokio-multi-thread")),