Skip to content

Commit d578876

Browse files
author
Daniel Dahan
committed
updated for swift 4.2
1 parent 9b00680 commit d578876

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

.swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0
1+
4.2

Algorithm.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'Algorithm'
3-
s.version = '2.1.1'
4-
s.swift_version = '4.0'
3+
s.version = '3.0'
4+
s.swift_version = '4.2'
55
s.license = 'BSD-3-Clause'
66
s.summary = 'A toolset for writing algorithms in Swift.'
77
s.homepage = 'http://algorithmswift.io'

Algorithm.xcodeproj/project.pbxproj

+5-3
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@
369369
isa = PBXProject;
370370
attributes = {
371371
LastSwiftUpdateCheck = 0720;
372-
LastUpgradeCheck = 0930;
372+
LastUpgradeCheck = 1020;
373373
ORGANIZATIONNAME = "CosmicMind, Inc.";
374374
TargetAttributes = {
375375
65744C9B1C554BA50011C977 = {
@@ -390,11 +390,11 @@
390390
};
391391
buildConfigurationList = 65744C961C554BA50011C977 /* Build configuration list for PBXProject "Algorithm" */;
392392
compatibilityVersion = "Xcode 3.2";
393-
developmentRegion = English;
393+
developmentRegion = en;
394394
hasScannedForEncodings = 0;
395395
knownRegions = (
396-
English,
397396
en,
397+
Base,
398398
);
399399
mainGroup = 65744C921C554BA50011C977;
400400
productRefGroup = 65744C9D1C554BA50011C977 /* Products */;
@@ -539,6 +539,7 @@
539539
isa = XCBuildConfiguration;
540540
buildSettings = {
541541
ALWAYS_SEARCH_USER_PATHS = NO;
542+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
542543
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
543544
CLANG_CXX_LIBRARY = "libc++";
544545
CLANG_ENABLE_MODULES = YES;
@@ -600,6 +601,7 @@
600601
isa = XCBuildConfiguration;
601602
buildSettings = {
602603
ALWAYS_SEARCH_USER_PATHS = NO;
604+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
603605
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
604606
CLANG_CXX_LIBRARY = "libc++";
605607
CLANG_ENABLE_MODULES = YES;

Algorithm.xcodeproj/xcshareddata/xcschemes/Algorithm iOS.xcscheme

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1000"
3+
LastUpgradeVersion = "1020"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

Algorithm.xcodeproj/xcshareddata/xcschemes/Algorithm macOS.xcscheme

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1000"
3+
LastUpgradeVersion = "1020"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

Sources/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.1.1</string>
18+
<string>3.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Tests/RedBlackTreeTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*/*
1+
/*
22
* The MIT License (MIT)
33
*
44
* Copyright (C) 2019, CosmicMind, Inc. <http://cosmicmind.com>.

0 commit comments

Comments
 (0)