Skip to content

Commit

Permalink
bump to v0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Nov 22, 2017
1 parent fa67dec commit 2602c30
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
# Mason releases

## 0.17.0

- Added
- gdal 2.2.3 and sub-packages:
- ogr2ogr 2.2.3
- libgdal 2.2.3
- mapnik 98c26bc (https://github.com/mapnik/mapnik/commit/98c26bc)
- build2 0.6.2 (https://build2.org)

- Changed
- Now compiling packages with clang++-5 on travis


## 0.16.0
- Added
- abseilc 56e782
- abseil 56e782
- clang-format 6.0.0
- clang-tidy 6.0.0
- clang++ 6.0.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ To install mason locally:

```sh
mkdir ./mason
curl -sSfL https://github.com/mapbox/mason/archive/v0.16.0.tar.gz | tar --gunzip --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=./mason
curl -sSfL https://github.com/mapbox/mason/archive/v0.17.0.tar.gz | tar --gunzip --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.16.0.tar.gz | tar --gunzip --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=/tmp
curl -sSfL https://github.com/mapbox/mason/archive/v0.17.0.tar.gz | tar --gunzip --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.16.0"
MASON_RELEASED_VERSION="0.17.0"

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

0 comments on commit 2602c30

Please sign in to comment.