diff --git a/CHANGELOG.md b/CHANGELOG.md index 20e5e53..9d902e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.4 + +- fix optional `repositories` value being required + # 0.1.3 - add support for defines diff --git a/addonscript/src/manifest/mod.rs b/addonscript/src/manifest/mod.rs index ef2783c..ad1357a 100644 --- a/addonscript/src/manifest/mod.rs +++ b/addonscript/src/manifest/mod.rs @@ -12,6 +12,7 @@ pub struct Manifest { #[serde(rename = "type")] pub manifest_type: ManifestType, pub versions: Vec, + #[serde(default)] pub repositories: Vec, pub meta: Meta, } diff --git a/mpt/Cargo.toml b/mpt/Cargo.toml index 0a7e224..c518c06 100644 --- a/mpt/Cargo.toml +++ b/mpt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mpt" -version = "0.1.3" +version = "0.1.4" edition = "2018" [[bin]]