Skip to content

Commit

Permalink
Bump version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
theRookieCoder committed Feb 7, 2024
1 parent 40d0af8 commit 1dd0b15
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog for Ferium

## `v4.5.1`
### 07.02.2024

- Add support for the [NeoForge](https://neoforged.net) mod loader ([#392](https://github.com/gorilla-devs/ferium/issues/392))
- Fix coloured output not working in Windows `conhost` ([#148](https://github.com/gorilla-devs/ferium/issues/148))
- Replace the slow, wasteful, and unreliable internet check with an appended warning when the program errors out due to a possible internet connection failure
- Make markdown verbose listing use batch requests too
- Make CurseForge mods use a batch request for verbose listing too
- Properly update the cached names for Modrinth mods again
- Make non-markdown verbose-listing display in alphabetical order ([#315](https://github.com/gorilla-devs/ferium/issues/315))
- Fix a bug where the mod loader in a GitHub Release asset filename wasn't detected properly if it was at the end, i.e. something like `*-<mod-loader>.jar` ([#343](https://github.com/gorilla-devs/ferium/issues/343))

## `v4.5.0`
### 30.01.2024

Expand Down
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
@@ -1,6 +1,6 @@
[package]
name = "ferium"
version = "4.5.0"
version = "4.5.1"
edition = "2021"
rust-version = "1.61" # Bound by `std::process::ExitCode`
authors = [
Expand Down
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ fn main() -> ExitCode {
}
#[cfg(windows)]
{
#[allow(clippy::unwrap_used)]
#[allow(clippy::unwrap_used)] // There is actually no error
// Enable colours on conhost
colored::control::set_virtual_terminal(true).unwrap();
}
#[allow(clippy::expect_used)] // No error handling yet
Expand Down

0 comments on commit 1dd0b15

Please sign in to comment.