From d1c12c8fc31e7e2bf604f1026b21af3128dee80f Mon Sep 17 00:00:00 2001 From: Alex Bates <16batesa@gmail.com> Date: Sun, 9 Feb 2020 13:14:23 +0000 Subject: [PATCH] chore(release): 0.5.0 --- CHANGELOG.md | 1 + Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ea03c9..196143e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +## 0.5.0 - Added _private exports_! Any export name beginning with `_` will be considered private to the package which owns it. Packages may not directly reference the private exports of their dependencies. diff --git a/Cargo.lock b/Cargo.lock index 0281ed2..08f818d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -547,7 +547,7 @@ dependencies = [ [[package]] name = "starpkg" -version = "0.4.1" +version = "0.5.0" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index be368d2..caf898e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starpkg" -version = "0.4.1" +version = "0.5.0" description = "Create composable Paper Mario mods" homepage = "https://imalex.xyz/starpkg" repository = "https://github.com/nanaian/starpkg"