Skip to content

Commit

Permalink
release: Update version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmicHorrorDev committed Feb 2, 2025
1 parent 79006d1 commit e0f991c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [

[package]
name = "inlyne"
version = "0.5.0-dev"
version = "0.5.0"
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 = [
Expand Down
2 changes: 1 addition & 1 deletion src/interpreter/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.0-dev https://github.com/Inlyne-Project/inlyne");
insta::assert_snapshot!(user_agent, @"inlyne 0.5.0 https://github.com/Inlyne-Project/inlyne");
}
6 changes: 3 additions & 3 deletions src/panic_hook.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,12 +221,12 @@ mod tests {
let report_path = report.persist().unwrap();

let contents = std::fs::read_to_string(&report_path).unwrap();
insta::assert_snapshot!(contents, @r###"
insta::assert_snapshot!(contents, @r"
# Crash Report
| Name | `inlyne` |
| ---: | :--- |
| Version | `0.5.0-dev` |
| Version | `0.5.0` |
| Operating System | [REDACTED] |
`````text
Expand All @@ -248,6 +248,6 @@ mod tests {
---
<!-- Add any relevant info below vv -->
"###);
");
}
}

0 comments on commit e0f991c

Please sign in to comment.