Skip to content

Commit

Permalink
0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mapsam committed Jan 17, 2019
1 parent 569dc10 commit c8fc3ea
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Mason releases

## 0.20.0

- Added
- boost 1.67.0
- boost_libregex_icu58 1.66.0
- icu 58.1-brkitr (+ BreakIterator), 63.1-min-static-data-1
- libosmium 2.15.0
- osmium-tool 1.10.0
- postgres 10.3 (with libedit support)
- swiftshader 2018-10-08-3b5e426
- tippecanoe 1.32.10
- vector-tile 1.0.3

- Changed
- alpine linux install compatibility fixes [c7ea656](https://github.com/mapbox/mason/commit/c7ea6566e6503e4b6c5e19cb53af08445c931687) [f6ab273](https://github.com/mapbox/mason/commit/f6ab273d30f210147a3f44e185f7959e65640f8d)
- harfbuzz 1.4.4 - clear environment before building ragel [#393](https://github.com/mapbox/mason/pull/393) h/t @edkimmel

Changes: https://github.com/mapbox/mason/compare/v0.19.0...v0.20.0

## 0.19.0

- Added
Expand All @@ -15,7 +34,7 @@
- crosstool-ng 1.23.0
- geojson 0.4.3
- geojsonvt 6.4.0, 6.5.0, 6.5.1, 6.6.0, 6.6.1, 6.6.2, 6.6.3
- geometry 0.9.3, 1.0.0
- geometry 0.9.3, 1.0.0
- glfw 2018-06-27-0be4f3f
- gtest 1.8.0_1
- gzip-hpp 0.1.0, a4cfa6a638de351d26834cf2fea373693cdaa927, bb80aac
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.18.0.tar.gz | tar -z --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=./mason
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
```

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.18.0.tar.gz | tar -z --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=/tmp
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
```

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.18.0"
MASON_RELEASED_VERSION="0.20.0"

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

0 comments on commit c8fc3ea

Please sign in to comment.