Skip to content

Commit 1dd0b15

Browse files
Bump version and changelog
1 parent 40d0af8 commit 1dd0b15

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog for Ferium
22

3+
## `v4.5.1`
4+
### 07.02.2024
5+
6+
- Add support for the [NeoForge](https://neoforged.net) mod loader ([#392](https://github.com/gorilla-devs/ferium/issues/392))
7+
- Fix coloured output not working in Windows `conhost` ([#148](https://github.com/gorilla-devs/ferium/issues/148))
8+
- Replace the slow, wasteful, and unreliable internet check with an appended warning when the program errors out due to a possible internet connection failure
9+
- Make markdown verbose listing use batch requests too
10+
- Make CurseForge mods use a batch request for verbose listing too
11+
- Properly update the cached names for Modrinth mods again
12+
- Make non-markdown verbose-listing display in alphabetical order ([#315](https://github.com/gorilla-devs/ferium/issues/315))
13+
- 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))
14+
315
## `v4.5.0`
416
### 30.01.2024
517

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ferium"
3-
version = "4.5.0"
3+
version = "4.5.1"
44
edition = "2021"
55
rust-version = "1.61" # Bound by `std::process::ExitCode`
66
authors = [

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ fn main() -> ExitCode {
7575
}
7676
#[cfg(windows)]
7777
{
78-
#[allow(clippy::unwrap_used)]
78+
#[allow(clippy::unwrap_used)] // There is actually no error
79+
// Enable colours on conhost
7980
colored::control::set_virtual_terminal(true).unwrap();
8081
}
8182
#[allow(clippy::expect_used)] // No error handling yet

0 commit comments

Comments
 (0)