From 34f452b53ce6289f4ecc33b581a1bb52cdbbf8ba Mon Sep 17 00:00:00 2001 From: Cosmic Horror Date: Wed, 30 Oct 2024 01:23:52 -0600 Subject: [PATCH 1/4] docs(Cargo.toml): Use a placeholder version --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/interpreter/tests.rs | 2 +- src/panic_hook.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 568d4da4..019f84b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1856,7 +1856,7 @@ dependencies = [ [[package]] name = "inlyne" -version = "0.4.1" +version = "0.5.0-dev" dependencies = [ "anstream", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index a79e7446..9376dee9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ [package] name = "inlyne" -version = "0.4.1" +version = "0.5.0-dev" description = "Introducing Inlyne, a GPU powered yet browserless tool to help you quickly view markdown files in the blink of an eye." edition = "2021" authors = ["trimental"] diff --git a/src/interpreter/tests.rs b/src/interpreter/tests.rs index a6da8f6b..6adb2534 100644 --- a/src/interpreter/tests.rs +++ b/src/interpreter/tests.rs @@ -989,5 +989,5 @@ fn custom_user_agent() { let server::FromServer::UserAgent(Some(user_agent)) = recv_ua.recv().unwrap() else { panic!(); }; - insta::assert_snapshot!(user_agent, @"inlyne 0.4.1 https://github.com/Inlyne-Project/inlyne"); + insta::assert_snapshot!(user_agent, @"inlyne 0.5.0-dev https://github.com/Inlyne-Project/inlyne"); } diff --git a/src/panic_hook.rs b/src/panic_hook.rs index 621aaeab..a7fe7813 100644 --- a/src/panic_hook.rs +++ b/src/panic_hook.rs @@ -226,7 +226,7 @@ mod tests { | Name | `inlyne` | | ---: | :--- | - | Version | `0.4.1` | + | Version | `0.5.0-dev` | | Operating System | [REDACTED] | `````text From 0121a5191a5aa823a925f6f0ff959bccc224d4b6 Mon Sep 17 00:00:00 2001 From: Cosmic Horror Date: Wed, 30 Oct 2024 01:34:46 -0600 Subject: [PATCH 2/4] docs(Cargo.toml): Add myself to the authors list --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9376dee9..88a5e552 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,10 @@ name = "inlyne" version = "0.5.0-dev" description = "Introducing Inlyne, a GPU powered yet browserless tool to help you quickly view markdown files in the blink of an eye." edition = "2021" -authors = ["trimental"] +authors = [ + "trimental", + "Cosmic ", +] license = "MIT" readme = "README.md" repository = "https://github.com/Inlyne-Project/inlyne" From b0a90a889e4d7e13926fdb0ef7b7091061354b7f Mon Sep 17 00:00:00 2001 From: Cosmic Horror Date: Wed, 30 Oct 2024 01:35:29 -0600 Subject: [PATCH 3/4] docs(Cargo.toml): Remove some redundant fields --- Cargo.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 88a5e552..4633c5e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,9 +14,7 @@ authors = [ "Cosmic ", ] license = "MIT" -readme = "README.md" repository = "https://github.com/Inlyne-Project/inlyne" -homepage = "https://github.com/Inlyne-Project/inlyne" rust-version = "1.81.0" exclude = [ "/ci/*", From e5585513a9381759557607e2ce9bfdb5ccb63459 Mon Sep 17 00:00:00 2001 From: Cosmic Horror Date: Wed, 30 Oct 2024 11:19:03 -0600 Subject: [PATCH 4/4] docs(Cargo.toml): Add a relevant category --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 4633c5e8..27734c32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,6 +23,7 @@ exclude = [ "/typos.toml", ] keywords = ["markdown", "viewer", "gpu"] +categories = ["gui"] [features] default = ["wayland", "x11"]