Skip to content

Commit c8fc3ea

Browse files
committed
0.20.0
1 parent 569dc10 commit c8fc3ea

3 files changed

Lines changed: 23 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Mason releases
22

3+
## 0.20.0
4+
5+
- Added
6+
- boost 1.67.0
7+
- boost_libregex_icu58 1.66.0
8+
- icu 58.1-brkitr (+ BreakIterator), 63.1-min-static-data-1
9+
- libosmium 2.15.0
10+
- osmium-tool 1.10.0
11+
- postgres 10.3 (with libedit support)
12+
- swiftshader 2018-10-08-3b5e426
13+
- tippecanoe 1.32.10
14+
- vector-tile 1.0.3
15+
16+
- Changed
17+
- alpine linux install compatibility fixes [c7ea656](https://github.com/mapbox/mason/commit/c7ea6566e6503e4b6c5e19cb53af08445c931687) [f6ab273](https://github.com/mapbox/mason/commit/f6ab273d30f210147a3f44e185f7959e65640f8d)
18+
- harfbuzz 1.4.4 - clear environment before building ragel [#393](https://github.com/mapbox/mason/pull/393) h/t @edkimmel
19+
20+
Changes: https://github.com/mapbox/mason/compare/v0.19.0...v0.20.0
21+
322
## 0.19.0
423

524
- Added
@@ -15,7 +34,7 @@
1534
- crosstool-ng 1.23.0
1635
- geojson 0.4.3
1736
- geojsonvt 6.4.0, 6.5.0, 6.5.1, 6.6.0, 6.6.1, 6.6.2, 6.6.3
18-
- geometry 0.9.3, 1.0.0
37+
- geometry 0.9.3, 1.0.0
1938
- glfw 2018-06-27-0be4f3f
2039
- gtest 1.8.0_1
2140
- gzip-hpp 0.1.0, a4cfa6a638de351d26834cf2fea373693cdaa927, bb80aac

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.18.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.20.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.18.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.20.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.18.0"
10+
MASON_RELEASED_VERSION="0.20.0"
1111

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

0 commit comments

Comments
 (0)