Skip to content

Commit

Permalink
3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
normansander committed Feb 11, 2020
1 parent 3f8c9e3 commit 25161a5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Changelog for Critical Maps iOS

## [Unreleased]
## [3.7.0] - 2020-02-11

### Added

Expand Down
8 changes: 4 additions & 4 deletions CriticalMaps.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1634,7 +1634,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 23;
CURRENT_PROJECT_VERSION = 24;
DEVELOPMENT_ASSET_PATHS = "CriticalMass/Development\\ Assets";
DEVELOPMENT_TEAM = 5YLLXUZBZ2;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
Expand All @@ -1645,7 +1645,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 3.6.0;
MARKETING_VERSION = 3.7.0;
OTHER_SWIFT_FLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = de.pokuslabs.criticalmassberlin;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -1667,7 +1667,7 @@
CODE_SIGN_ENTITLEMENTS = CriticalMaps/CriticalMaps.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 23;
CURRENT_PROJECT_VERSION = 24;
DEVELOPMENT_ASSET_PATHS = "CriticalMass/Development\\ Assets";
DEVELOPMENT_TEAM = 5YLLXUZBZ2;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
Expand All @@ -1678,7 +1678,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 3.6.0;
MARKETING_VERSION = 3.7.0;
OTHER_SWIFT_FLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = de.pokuslabs.criticalmassberlin;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion CriticalMass/BlurryFullscreenOverlayView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class BlurryFullscreenOverlayView: UIView, IBConstructable {
}

private func updateGradient() {
guard let gradientLayer = self.layer as? CAGradientLayer else {
guard let gradientLayer = layer as? CAGradientLayer else {
return
}

Expand Down
2 changes: 1 addition & 1 deletion CriticalMass/MapViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ extension MapViewController: MKMapViewDelegate {
}

func mapView(_: MKMapView, rendererFor overlay: MKOverlay) -> MKOverlayRenderer {
guard let renderer = self.tileRenderer else {
guard let renderer = tileRenderer else {
return MKOverlayRenderer(overlay: overlay)
}
return renderer
Expand Down
2 changes: 1 addition & 1 deletion CriticalMass/SocialViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class SocialViewController: UIViewController, UIToolbarDelegate {
private func configureSegmentedControl() {
navigationItem.titleView = segmentedControl
NSLayoutConstraint.activate([
segmentedControl.centerXAnchor.constraint(equalTo: self.navigationItem.titleView!.centerXAnchor),
segmentedControl.centerXAnchor.constraint(equalTo: navigationItem.titleView!.centerXAnchor),
segmentedControl.heightAnchor.constraint(equalTo: navigationItem.titleView!.heightAnchor),
segmentedControl.widthAnchor.constraint(equalToConstant: 180.0),
])
Expand Down
6 changes: 3 additions & 3 deletions Settings.bundle/com.mono0926.LicensePlist.latest_result.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Crypto, nameSpecified: , owner: soffes, version: 0.6.0

name: GrowingTextView, nameSpecified: , owner: KennethTsang, version: 0.7.2

name: SDWebImage, nameSpecified: , owner: SDWebImage, version: 5.4.1
name: SDWebImage, nameSpecified: , owner: SDWebImage, version: 5.5.2

name: swift-snapshot-testing, nameSpecified: , owner: pointfreeco, version: 1.7.1
name: swift-snapshot-testing, nameSpecified: , owner: pointfreeco, version: 1.7.2

add-version-numbers: false

LicensePlist Version: 2.9.0
LicensePlist Version: 2.12.0

0 comments on commit 25161a5

Please sign in to comment.