From 0a4368b5b7e675711e7860fd03ccc29655ecb559 Mon Sep 17 00:00:00 2001 From: Sheldon Hull Date: Thu, 23 May 2024 23:22:24 -0500 Subject: [PATCH] feat: update to 1.0.2 --- .changes/unreleased/tests-20240523-225636.yaml | 3 --- .../\360\237\220\233 Bug Fix-20240521-122813.yaml" | 3 --- ...\360\237\224\250 Refactor-20240521-122929.yaml" | 7 ------- .changes/v1.0.2.md | 8 ++++++++ CHANGELOG.md | 14 ++++++++++++++ 5 files changed, 22 insertions(+), 13 deletions(-) delete mode 100644 .changes/unreleased/tests-20240523-225636.yaml delete mode 100644 ".changes/unreleased/\360\237\220\233 Bug Fix-20240521-122813.yaml" delete mode 100644 ".changes/unreleased/\360\237\224\250 Refactor-20240521-122929.yaml" create mode 100644 .changes/v1.0.2.md diff --git a/.changes/unreleased/tests-20240523-225636.yaml b/.changes/unreleased/tests-20240523-225636.yaml deleted file mode 100644 index f584017d..00000000 --- a/.changes/unreleased/tests-20240523-225636.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: tests -body: Remove tests that were recursive in nature by early return from test. -time: 2024-05-23T22:56:36.996660038-05:00 diff --git "a/.changes/unreleased/\360\237\220\233 Bug Fix-20240521-122813.yaml" "b/.changes/unreleased/\360\237\220\233 Bug Fix-20240521-122813.yaml" deleted file mode 100644 index 258384dd..00000000 --- "a/.changes/unreleased/\360\237\220\233 Bug Fix-20240521-122813.yaml" +++ /dev/null @@ -1,3 +0,0 @@ -kind: "bug-fix" -body: Trunk upgrade was set to install, not upgrade tooling, so now it does what it should have done in the first place... before the coder in question got in way and didn't use his noggin. -time: 2024-05-21T12:28:13.507347-05:00 diff --git "a/.changes/unreleased/\360\237\224\250 Refactor-20240521-122929.yaml" "b/.changes/unreleased/\360\237\224\250 Refactor-20240521-122929.yaml" deleted file mode 100644 index e2201234..00000000 --- "a/.changes/unreleased/\360\237\224\250 Refactor-20240521-122929.yaml" +++ /dev/null @@ -1,7 +0,0 @@ -kind: refactor -body: |- - Trunk package now supports installing for windows, via the newer trunk npm based install, while maintaining the bash install for linux/darwin. - If the project has a package.json, then it will install as dev dependency, otherwise as a global tool. - No logic to detect alternative tooling such as yarn, bun, deno, etc unless requested. - While trunk also supports this method of installation for Darwin/Linux, I've opted to keep it the same as before and use the bash install method for those regardless if package.json is there or not. -time: 2024-05-21T12:29:29.380394-05:00 diff --git a/.changes/v1.0.2.md b/.changes/v1.0.2.md new file mode 100644 index 00000000..b342bfa6 --- /dev/null +++ b/.changes/v1.0.2.md @@ -0,0 +1,8 @@ +## v1.0.2 - 2024-05-23 + +- **bug-fix**: Trunk upgrade was set to install, not upgrade tooling, so now it does what it should have done in the first place... before the coder in question got in way and didn't use his noggin. +- **tests**: Remove tests that were recursive in nature by early return from test. +- **refactor**: Trunk package now supports installing for windows, via the newer trunk npm based install, while maintaining the bash install for linux/darwin. +If the project has a package.json, then it will install as dev dependency, otherwise as a global tool. +No logic to detect alternative tooling such as yarn, bun, deno, etc unless requested. +While trunk also supports this method of installation for Darwin/Linux, I've opted to keep it the same as before and use the bash install method for those regardless if package.json is there or not. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index a960ae55..2fb4d50c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## v1.0.2 - 2024-05-23 + +- **bug-fix**: Trunk upgrade was set to install, not upgrade tooling, so now it does what it should have done in the first place... before the coder in question got in way and didn't use his noggin. +- **tests**: Remove tests that were recursive in nature by early return from test. +- **refactor**: Trunk package now supports installing for windows, via the newer trunk npm based install, while maintaining the bash install for linux/darwin. + If the project has a package.json, then it will install as dev dependency, otherwise as a global tool. + No logic to detect alternative tooling such as yarn, bun, deno, etc unless requested. + While trunk also supports this method of installation for Darwin/Linux, I've opted to keep it the same as before and use the bash install method for those regardless if package.json is there or not. + ## v1.0.1 - 2023-05-25 ### 🎉 Feature @@ -25,6 +34,11 @@ and is generated by [Changie](https://github.com/miniscruff/changie). - Adjust `magetoolsutils` output to be less verbose and output to debug when matching condition instead of Info level, as this has to be used in many functions and is noisy. - Improve `ci.IsCI()` to detect GitHub specifically, Gitlab, and then resolve `CI=1` as generic CI instead. +### ⬆️ Dependencies + +- Various dependencies updated to latest versions. + Reduced additional upstream dependency requirements. + ## v1.0.0 - 2022-10-18 Breaking changes included.