Skip to content

Commit 6aa9591

Browse files
committed
v0.18.0
1 parent 680c6a6 commit 6aa9591

3 files changed

Lines changed: 52 additions & 4 deletions

File tree

CHANGELOG.md

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

3+
## 0.18.0
4+
5+
- Added
6+
- android-ndk r16b
7+
- args 6.2.0
8+
- bcc e6c7568
9+
- benchmark 1.3.0, 1.3.0-cxx11abi
10+
- binutils 2.30
11+
- boost 1.66.0 (includes boost_libatomic, boost_libchrono, boost_libdate_time, boost_libfilesystem, boost_libiostreams, boost_libprogram_options, boost_libpython, boost_libregex, boost_libregex_icu, boost_libregex_icu57, boost_listsystem, boost_libtest, boost_libthread)
12+
- build2 0.7.0-a.0.1517662481.a542a12b9195bb49
13+
- gdal 2.2.3-1 (with geos enabled)
14+
- jq 1.5-239278fd
15+
- libcurl 7.50.2
16+
- libedit 3.1
17+
- libnghttp2 1.26.0
18+
- llvm 7.0.0. 5.0.1 (includes clang++, clang-format, clang-tidy, include-what-you-use, llvm-cov)
19+
- mapnik 3.0.18, 3.0.17, 3.0.16, a2f5969
20+
- ncurses 6.1
21+
- optional f27e7908
22+
- osm-tag-rewriter 1.1.1
23+
- perf 4.15
24+
- protozero 1.6.1
25+
- spatial-algorithms 0.1.0, cdda174
26+
- tao_tuple 28626e99
27+
- tippecanoe 1.27.6
28+
- vector-tile 1.0.1, f4728da
29+
- vtzero 533b811, f6efb8e, 7adde32
30+
- wget 1.19.2
31+
32+
- Changed
33+
- Updated llvm documentation
34+
- Updated download path for libpng 1.6.28
35+
- Create .ccache directory in container to allow mapping volume
36+
- Mason tests default to precise
37+
- Various style fixes in mason.sh [#489](https://github.com/mapbox/mason/pull/489)
38+
- Advances to llvm packaging [30c4647](https://github.com/mapbox/mason/commit/30c4647d0d80439d8b6017f519d13812a9fe986b)
39+
- now building sanitized libc++ (asan, msan, and tsan)
40+
- now building libc++/c++abi on all platforms
41+
- still not installing libc++ on osx (to avoid conflicts with system)
42+
- now ensuring we build using mason clang++
43+
- upgraded build dependencies
44+
- added support for building lldb against libedit and libncurses
45+
- simplify and robustify package installs (no longer by default building iwyu)
46+
- longer installing install-xcode-toolchain
47+
48+
Changes: https://github.com/mapbox/mason/compare/v0.17.0...v0.18.0
49+
50+
351
## 0.17.0
452

553
- Added
@@ -64,7 +112,7 @@
64112
- vtzero e651b70
65113
- vtzero fa6682b
66114

67-
- Fixed
115+
- Fixed
68116
- Improve Mason error handling https://github.com/mapbox/mason/commit/1727795f314dbef66fb0f84ee98a82a62e77b5d1
69117
- Fix Docker invocation https://github.com/mapbox/mason/commit/66817048a3f5613c14838920df237e781c7a4b99
70118
- PKG_CONFIG_PATH env var fix https://github.com/mapbox/mason/pull/493/files

README.md

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

4141
```sh
4242
mkdir ./mason
43-
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
43+
curl -sSfL https://github.com/mapbox/mason/archive/v0.18.0.tar.gz | tar --gunzip --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=./mason
4444
```
4545

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

4848
To install mason globally (to /tmp):
4949

5050
```sh
51-
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
51+
curl -sSfL https://github.com/mapbox/mason/archive/v0.18.0.tar.gz | tar --gunzip --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=/tmp
5252
```
5353

5454
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.17.0"
10+
MASON_RELEASED_VERSION="0.18.0"
1111

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

0 commit comments

Comments
 (0)