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

set version 0.1.8 #28

Merged
merged 3 commits into from Jan 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 25 additions & 1 deletion CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dev/VERSION
@@ -1 +1 @@
0.1.7
0.1.8
3 changes: 3 additions & 0 deletions dev/changes/v0.1.7.md
@@ -0,0 +1,3 @@
Fixed:

- Darwin arm64 builds now succeed (#20)
19 changes: 19 additions & 0 deletions dev/changes/v0.1.8.md
@@ -0,0 +1,19 @@
### Changed:

- **Dirty builds now fail early when running the action.**<br />
In CI, there's no good use-case for dirty builds, however dirty builds still
work locally when running the CLI directly.
- **You can now set `TARGET_DIR` when running the `build` subcommand of the CLI.**<br />
This dictates the the output directory for the binary, as well as where to place
other filed that need to be included in the release zip.
- **The `-clean` flag now produces a more useful error message when the worktree is dirty.**<br />
It lists the paths which are flagged as dirty, to make it much easier to debug.

### Added:

- New inspect flag: `-worktree` which reports on the dirty/clean status of the worktree.
- Development documentation docs/development.md

### Fixed:

- No longer using the deprecated `::set-output` syntax in the action YAML.