From 81d03d28975b7f8447d05e202d213173c47cdc43 Mon Sep 17 00:00:00 2001 From: Anaminus Date: Sun, 23 May 2021 12:51:56 -0500 Subject: [PATCH] Release version v0.7.2. --- CHANGELOG.md | 16 ++++++++++++---- README.md | 18 +++++++++--------- rbxmk/version.go | 2 +- 3 files changed, 22 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fd8fd91..3525f074 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,15 +3,23 @@ This document describes changes between versions of rbxmk. The `imperative` branch is the latest unreleased version. ## imperative -**Fixes:** -- Fix fragments failing to resolve due to case-sensitivity. - See a [comparison with the previous version][cmp-imperative] for a thorough list of changes. The [Documentation page][doc-imperative] provides a complete reference for this version of rbxmk. [doc-imperative]: https://github.com/Anaminus/rbxmk/blob/imperative/doc/README.md#user-content-rbxmk-reference -[cmp-imperative]: https://github.com/Anaminus/rbxmk/compare/v0.7.1...imperative +[cmp-imperative]: https://github.com/Anaminus/rbxmk/compare/v0.7.2...imperative + +## v0.7.2 +**Fixes:** +- Fix fragments failing to resolve due to case-sensitivity. + +See a [comparison with the previous version][cmp-v0.7.2] for a thorough list of changes. + +The [Documentation page][doc-v0.7.2] provides a complete reference for this version of rbxmk. + +[doc-v0.7.2]: https://github.com/Anaminus/rbxmk/blob/v0.7.2/doc/README.md#user-content-rbxmk-reference +[cmp-v0.7.2]: https://github.com/Anaminus/rbxmk/compare/v0.7.1...v0.7.2 ## v0.7.1 **Highlights:** diff --git a/README.md b/README.md index b55c800d..d55725ce 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ for more simple actions, such as downloading models or publishing games. [lua]: https://lua.org ## Download -The current version of rbxmk is **v0.7.1**. The following +The current version of rbxmk is **v0.7.2**. The following builds are available for download: | Windows | Mac | Linux | @@ -28,13 +28,13 @@ See the [Release page][release] for more information on the current version. in progress. Please practice redundancy and use backups to reduce the risk of data loss. Be sure to [report][issues] issues as you encounter them!* -[win64]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.1/rbxmk-v0.7.1-windows-amd64.zip -[win32]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.1/rbxmk-v0.7.1-windows-386.zip -[macos]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.1/rbxmk-v0.7.1-darwin-amd64.zip -[linux64]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.1/rbxmk-v0.7.1-linux-amd64.zip -[linux32]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.1/rbxmk-v0.7.1-linux-386.zip -[source]: https://github.com/Anaminus/rbxmk/archive/v0.7.1.zip -[release]: https://github.com/Anaminus/rbxmk/releases/tag/v0.7.1 +[win64]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.2/rbxmk-v0.7.2-windows-amd64.zip +[win32]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.2/rbxmk-v0.7.2-windows-386.zip +[macos]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.2/rbxmk-v0.7.2-darwin-amd64.zip +[linux64]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.2/rbxmk-v0.7.2-linux-amd64.zip +[linux32]: https://github.com/Anaminus/rbxmk/releases/download/v0.7.2/rbxmk-v0.7.2-linux-386.zip +[source]: https://github.com/Anaminus/rbxmk/archive/v0.7.2.zip +[release]: https://github.com/Anaminus/rbxmk/releases/tag/v0.7.2 [issues]: https://github.com/Anaminus/rbxmk/issues ## Usage @@ -75,7 +75,7 @@ If you installed Go correctly, this will install the latest version of rbxmk to `$GOPATH/bin`, which will allow you run it directly from a shell. A specific version of rbxmk may be installed by replacing `latest` with a -version number (e.g. `v0.7.1`). +version number (e.g. `v0.7.2`). ### Development To compile and install the bleeding-edge version, the best way is to clone the diff --git a/rbxmk/version.go b/rbxmk/version.go index 62da141c..54ca4757 100644 --- a/rbxmk/version.go +++ b/rbxmk/version.go @@ -1,3 +1,3 @@ package main -const Version = "0.7.1" +const Version = "0.7.2"