Skip to content

Commit 8fb4234

Browse files
Quick hotfix, made License.url nullable
1 parent 677140c commit 8fb4234

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
This changelog is formatted based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44

5+
## [3.1.1] - 05.08.2021
6+
7+
## Changed
8+
9+
- Made the `License` struct's `url` field nullable
10+
511
## [3.1.0] - 05.08.2021
612

713
### Added

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 = "3.1.0"
3+
version = "3.1.1"
44
edition = "2018"
55
authors = ["theRookieCoder"]
66

src/labrinth/structs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ pub struct Mod {
7878
pub struct License {
7979
pub id: String,
8080
pub name: String,
81-
pub url: String,
81+
pub url: Option<String>,
8282
}

src/util/cli.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ferium
2-
version: "3.1.0"
2+
version: "3.1.1"
33
author: theRookieCoder
44
about: An easy to use package manager for Minecraft mods
55
subcommands:

0 commit comments

Comments
 (0)