Skip to content

Commit

Permalink
Merge pull request #61 from maxfierke/mf-release_0.7.0
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
maxfierke authored Nov 12, 2024
2 parents ed1a014 + 309baa7 commit f889f3d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-11-11

### 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"
Expand All @@ -22,14 +32,25 @@ 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)
- macOS: Updated codesigning certificate

### Bugfixes

- [BREAKING] Setting `runtimes = []` in a project now has the intended effect of
_disabling_ all language runtime detection. Previously, this had no effect. (#56)
- macOS: `strap.sh` URL is pinned to [`9bab07706bb1e143b8f1dbadf26d01d017f53436`](https://github.com/MikeMcQuaid/strap/blob/9bab07706bb1e143b8f1dbadf26d01d017f53436/bin/strap.sh) given functionality removed after that

### 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

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project('mstrap',
'c',
meson_version : '>= 0.60.0',
license : 'MIT',
version : '0.7.0-dev.3',
version : '0.7.0',
default_options : [
'buildtype=debugoptimized',
'default_library=static'
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mstrap
version: 0.7.0-dev.3
version: 0.7.0

authors:
- Max Fierke <[email protected]>
Expand Down

0 comments on commit f889f3d

Please sign in to comment.