Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.7.0 #61

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 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-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"
Expand All @@ -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

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.2',
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.2
version: 0.7.0

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