Skip to content

Commit

Permalink
bump to 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Feb 10, 2021
1 parent 398b0c7 commit 6e12456
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Mason releases

## 0.23.0
- LLVM 11 now available
- Boost 1.75.0 now available

## 0.22.0

- Binaries now compiled with clang++ 10.0.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ To install mason locally:

```sh
mkdir ./mason
curl -sSfL https://github.com/mapbox/mason/archive/v0.22.0.tar.gz | tar -z --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=./mason
curl -sSfL https://github.com/mapbox/mason/archive/v0.23.0.tar.gz | tar -z --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=./mason
```

Then you can use the `mason` command like: `./mason/mason install <package> <version>`

To install mason globally (to /tmp):

```sh
curl -sSfL https://github.com/mapbox/mason/archive/v0.22.0.tar.gz | tar -z --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=/tmp
curl -sSfL https://github.com/mapbox/mason/archive/v0.23.0.tar.gz | tar -z --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=/tmp
```

Then you can use the `mason` command like: `/tmp/mason install <package> <version>`
Expand Down
2 changes: 1 addition & 1 deletion mason
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MASON_VERSION=$1 ; shift
set -eu
set -o pipefail

MASON_RELEASED_VERSION="0.22.0"
MASON_RELEASED_VERSION="0.23.0"

if [ "${MASON_COMMAND}" = "--version" ]; then
echo ${MASON_RELEASED_VERSION}
Expand Down

0 comments on commit 6e12456

Please sign in to comment.