Skip to content

Commit

Permalink
v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mapsam committed Aug 1, 2017
1 parent c19bab2 commit e697e62
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Mason releases

## 0.14.0

- Added
- libosmium cd8e2ff
- osm-area-tools b222e00
- geometry 0.9.2
- supercluster 0.2.1
- benchmark 1.0.0, 1.1.0
- cheap-ruler 2.5.2, 2.5.3
- TBB to 2017_U7
- llvm 4.0.1
- tippecanoe 1.21.0
- catch 1.9.6

- Fixed
- If mason is executed through a symlink, resolve the link

Changes: https://github.com/mapbox/mason/compare/v0.13.0...v0.14.0

## 0.13.0

- Added
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.13.0.tar.gz | tar --gunzip --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=./mason
curl -sSfL https://github.com/mapbox/mason/archive/v0.14.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.13.0.tar.gz | tar --gunzip --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=/tmp
curl -sSfL https://github.com/mapbox/mason/archive/v0.14.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.13.0"
MASON_RELEASED_VERSION="0.14.0"

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

0 comments on commit e697e62

Please sign in to comment.