Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Update changelog, podspecs for macOS SDK v0.4.1 #8684

Merged
merged 2 commits into from
Apr 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions platform/macos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

## 0.4.1

This version of the Mapbox macOS SDK corresponds to version 3.5.2 of the Mapbox iOS SDK.

* Fixed an issue causing code signing failures and bloating the framework. ([#8640](https://github.com/mapbox/mapbox-gl-native/pull/8640))
* Fixed an issue that could cause a crash if annotations unknown to the map view were interacted with. ([#8686](https://github.com/mapbox/mapbox-gl-native/pull/8686))
* Renamed the "Data-Driven Styling" guide to "Using Style Functions at Runtime" and clarified the meaning of data-driven styling in the guide's discussion of runtime style functions. ([#8627](https://github.com/mapbox/mapbox-gl-native/pull/8627))
* Renamed the Data-Driven Styling guide to Using Style Functions at Runtime and clarified the meaning of data-driven styling in the guides discussion of runtime style functions. ([#8627](https://github.com/mapbox/mapbox-gl-native/pull/8627))

## 0.4.0
## 0.4.0 - April 2, 2017

This version of the Mapbox macOS SDK corresponds to version 3.5.1 of the Mapbox iOS SDK.

Expand Down
2 changes: 1 addition & 1 deletion platform/macos/Mapbox-macOS-SDK-symbols.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |m|

version = '0.4.0'
version = '0.4.1'

m.name = 'Mapbox-macOS-SDK-symbols'
m.version = "#{version}-symbols"
Expand Down
2 changes: 1 addition & 1 deletion platform/macos/Mapbox-macOS-SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |m|

version = '0.4.0'
version = '0.4.1'

m.name = 'Mapbox-macOS-SDK'
m.version = version
Expand Down
12 changes: 6 additions & 6 deletions platform/qt/bitrise-qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ workflows:
set -eu -o pipefail
sudo chown -R $USER /usr/local
brew install cmake
brew install qt5
brew link qt5 --force
brew linkapps qt5
export HOMEBREW_QT5_VERSION=$(brew list --versions qt5 | rev | cut -d' ' -f1 | rev)
ln -s /usr/local/Cellar/qt5/$HOMEBREW_QT5_VERSION/mkspecs /usr/local/mkspecs
ln -s /usr/local/Cellar/qt5/$HOMEBREW_QT5_VERSION/plugins /usr/local/plugins
brew install qt
brew link qt --force
brew linkapps qt
export HOMEBREW_QT5_VERSION=$(brew list --versions qt | rev | cut -d' ' -f1 | rev)
ln -s /usr/local/Cellar/qt/$HOMEBREW_QT5_VERSION/mkspecs /usr/local/mkspecs
ln -s /usr/local/Cellar/qt/$HOMEBREW_QT5_VERSION/plugins /usr/local/plugins
export BUILDTYPE=Debug
make qt-app
make run-qt-test
Expand Down