Skip to content

Commit 6e12456

Browse files
author
Dane Springmeyer
committed
bump to 0.23.0
1 parent 398b0c7 commit 6e12456

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Mason releases
22

3+
## 0.23.0
4+
- LLVM 11 now available
5+
- Boost 1.75.0 now available
6+
37
## 0.22.0
48

59
- Binaries now compiled with clang++ 10.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ To install mason locally:
5151

5252
```sh
5353
mkdir ./mason
54-
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
54+
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
5555
```
5656

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

5959
To install mason globally (to /tmp):
6060

6161
```sh
62-
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
62+
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
6363
```
6464

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

mason

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MASON_VERSION=$1 ; shift
77
set -eu
88
set -o pipefail
99

10-
MASON_RELEASED_VERSION="0.22.0"
10+
MASON_RELEASED_VERSION="0.23.0"
1111

1212
if [ "${MASON_COMMAND}" = "--version" ]; then
1313
echo ${MASON_RELEASED_VERSION}

0 commit comments

Comments
 (0)