From a04addf78576d94e14b9dca7ec56812071b8a1e5 Mon Sep 17 00:00:00 2001 From: Max Fierke Date: Mon, 8 Jul 2024 22:50:15 -0500 Subject: [PATCH 1/2] Update changelog for 0.7.0 --- CHANGELOG.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 191bc13..41fbb04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Bugfixes + +### Removed + +## [0.7.0] - 2024-XX-XX + +### Added + - Support for using [mise](https://mise.jdx.dev) to manage language runtime versions (#50, #53). `config.hcl` can be configured as such to enable it: ``` version = "1.1" @@ -22,14 +32,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 To switch, you'll need to re-run `mstrap` and restart your terminal windows. Then, you can run `brew uninstall asdf --force` to uninstall asdf (`mstrap` will have removed `asdf`'s activation from mstrap's `env.sh` already) +- [EXPERIMENTAL] Support `pnpm install` for Node.js/JavaScript-based projects. + This is currently done through `brew`, rather than `corepack`, but this may + change. (#56) ### Changed +- [BREAKING] The `-d`/`--debug` flag has been changed to `-v`/`--verbose` (#59) +- macOS: Attempt to work out if `git` is really installed or not (#57) + ### Bugfixes +- [BREAKING] Setting `runtimes = []` in a project now has the intended effect of + _disabling_ all language runtime detection. Previously, this had no effect. (#56) + ### Removed -- Fix deprecation warning in newer Docker Compose versions caused by version property in `~/.mstrap/services-internal.yml` +- Fix deprecation warning in newer Docker Compose versions caused by version property in `~/.mstrap/services-internal.yml` (#58) ## [0.6.0] - 2023-10-15 From 230b0619d392e8877cb219c43c952463afdddd98 Mon Sep 17 00:00:00 2001 From: Max Fierke Date: Mon, 8 Jul 2024 22:50:29 -0500 Subject: [PATCH 2/2] Update version to 0.7.0 --- meson.build | 2 +- shard.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 18b3466..5d90b6f 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('mstrap', 'c', meson_version : '>= 0.60.0', license : 'MIT', - version : '0.7.0-dev.2', + version : '0.7.0', default_options : [ 'buildtype=debugoptimized', 'default_library=static' diff --git a/shard.yml b/shard.yml index fd88ba0..53445da 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: mstrap -version: 0.7.0-dev.2 +version: 0.7.0 authors: - Max Fierke