From 2465d90b69d47a7e0bbdf256010fae7717994394 Mon Sep 17 00:00:00 2001 From: "Denis Kuzmin [ GitHub/3F ]" Date: Sat, 20 Jul 2019 19:25:55 +0300 Subject: [PATCH] Public release of the hMSBuild 2.2 * FIXED: Fixed searching from MS BuildTools products. Issue #12 (Thanks @odalet). * CHANGED: [VS2017+] hMSBuild will search now in ANY available products. PR #13 (Thanks @odalet). * NOTE: In addition to changes above, please use `-vsw-priority` and `-force` keys to use only what is needed. Issues: #8, #14. --- .version | 2 +- .vssbe | 2 +- Readme.md | 2 +- changelog.txt | 10 ++++++++++ 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.version b/.version index 50aea0e..e3a4f19 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -2.1.0 \ No newline at end of file +2.2.0 \ No newline at end of file diff --git a/.vssbe b/.vssbe index 95d6e99..5f1aa1a 100644 --- a/.vssbe +++ b/.vssbe @@ -63,7 +63,7 @@ "{", " #[var bSha1 = #[IO sout(\"git\", \"rev-parse --short HEAD\")]]", " ", - " #[$(hMSBuildVersion = \"$(hMSBuildVersion) [ $(bSha1) ]\")]", + " #[$(hMSBuildVersion = \"$(hMSBuildVersion)+$(bSha1)\")]", "}]", "" ] diff --git a/Readme.md b/Readme.md index b97f373..fc15699 100644 --- a/Readme.md +++ b/Readme.md @@ -32,7 +32,7 @@ Licensed under the [MIT License (MIT)](https://github.com/3F/hMSBuild/blob/maste ``` Copyright (c) 2017-2019 Denis Kuzmin < entry.reg@gmail.com > GitHub/3F ``` -And the hMSBuild contributors: https://github.com/3F/hMSBuild/graphs/contributors +hMSBuild contributors: https://github.com/3F/hMSBuild/graphs/contributors [ [ ☕ Donate ](https://3F.github.com/Donation/) ] diff --git a/changelog.txt b/changelog.txt index 60a35f6..a18ba5d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,16 @@ hMSBuild :: https://github.com/3F/hMSBuild - - - - - +[v2.2] 2019.07.20 + + * FIXED: Fixed searching from MS BuildTools products. Issue #12 (Thanks @odalet). + + * CHANGED: [VS2017+] hMSBuild will search now in ANY available products. PR #13 (Thanks @odalet). + + * NOTE: In addition to changes above, please use `-vsw-priority` and `-force` keys to use only what is needed. + Issues: #8, #14. + + [v2.1] 2019.05.27 * NEW: Support for VS2019 msbuild (Thanks @gerhardol)