Skip to content

Commit

Permalink
release: v1.1.0 (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper authored May 10, 2023
1 parent e5d2c29 commit 464bb38
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 13 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# `binary-install` changelog

## v1.1.0

### Features

- Adds an optional third argument to `new Binary` to configure the installation directory - @wighawag, PR #29

Example: `new Binary("my-binary", "https://example.com/my-binary.tar.gz", { "installDirectory": "/tmp/custom-dir" })`

### Maintenance

- Updates `binary-install-example` to download Intel binaries by default for Apple Silicon machines - @maxdeviant, PR #24

- Fix log suppression configuration - @maxdeviant, PR #23

This PR makes the `suppressLogs` behavior actually respected, before it was inverted and would log messages incorrectly.

- Wait for a complete install before running a binary - @wighawag, PR #28 fixes #27

Sometimes installation wouldn't complete before the binary was run, this PR rewrites the code to fully complete installation before continuing to execution.

- Fix up integration tests - @EverlastingBugstopper, PR #31

This relied on overriding `installDirectory` with the new feature in this release, thanks @wighawag!

## [<= v1.0.6]

There are no changelog entries pre-v1.1.0.
24 changes: 12 additions & 12 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion packages/binary-install/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "binary-install",
"version": "1.0.6",
"version": "1.1.0",
"description": "Install binary applications via npm",
"main": "./index.js",
"engines": {
Expand Down

0 comments on commit 464bb38

Please sign in to comment.