From 4e82102257ce9e3fd31e4bb66f11177f7c71f05f Mon Sep 17 00:00:00 2001 From: Max Fierke Date: Sat, 27 Jan 2024 23:39:27 -0600 Subject: [PATCH] Start the 0.7.0 cycle w/ 0.7.0.dev --- CHANGELOG.md | 15 +++++++++++++++ meson.build | 2 +- shard.yml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7297b69..2e488d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Support for using [mise](https://mise.jdx.dev) to manage language runtime versions (#50). `config.hcl` can be configured as such to enable it: + ``` + version = "1.1" + + # ... + + runtimes { + default_manager = "mise" + } + ``` + + 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) + ### Changed ### Bugfixes diff --git a/meson.build b/meson.build index 3e204a6..e4a7556 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('mstrap', 'c', meson_version : '>= 0.60.0', license : 'MIT', - version : '0.6.0', + version : '0.7.0.dev', default_options : [ 'buildtype=debugoptimized', 'default_library=static' diff --git a/shard.yml b/shard.yml index fe591da..343b8c2 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: mstrap -version: 0.6.0 +version: 0.7.0.dev authors: - Max Fierke