Skip to content

Commit a9c4667

Browse files
committed
Version bump 7.0.1
1 parent bdad85c commit a9c4667

File tree

9 files changed

+20
-19
lines changed

9 files changed

+20
-19
lines changed

Diff for: CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Change Log
22

3+
* **Version 7.0.1**: *(2020/02/04)* - Updated for Xcode 11.3.1, adds in missing convenience methods for notice, alert, and emergency (thanks @hk05)
34
* **Version 7.0.0**: *(2019/03/26)* - Updated for Xcode 10.2/Swift 5.0, adds additional log levels: notice, alert, and emergency
45
* **Version 6.1.0**: *(2018/09/16)* - Fix for Xcode 10.0 warnings/Swift 4.2, other minor tweaks
56
* **Version 6.0.4**: *(2018/06/11)* - Fix for Xcode 9.3 warnings/Swift 4.1 (thanks @ijaureguialzo), and other fixes

Diff for: DemoApps/iOSDemo/iOSDemo.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@
712712
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
713713
CODE_SIGN_IDENTITY = "iPhone Developer";
714714
COPY_PHASE_STRIP = NO;
715-
CURRENT_PROJECT_VERSION = 7.0.0;
715+
CURRENT_PROJECT_VERSION = 7.0.1;
716716
ENABLE_STRICT_OBJC_MSGSEND = YES;
717717
ENABLE_TESTABILITY = YES;
718718
GCC_C_LANGUAGE_STANDARD = gnu99;
@@ -761,7 +761,7 @@
761761
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
762762
CODE_SIGN_IDENTITY = "iPhone Developer";
763763
COPY_PHASE_STRIP = YES;
764-
CURRENT_PROJECT_VERSION = 7.0.0;
764+
CURRENT_PROJECT_VERSION = 7.0.1;
765765
ENABLE_NS_ASSERTIONS = NO;
766766
ENABLE_STRICT_OBJC_MSGSEND = YES;
767767
GCC_C_LANGUAGE_STANDARD = gnu99;

Diff for: DemoApps/macOSDemo/macOSDemo.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@
496496
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
497497
CODE_SIGN_IDENTITY = "";
498498
COPY_PHASE_STRIP = NO;
499-
CURRENT_PROJECT_VERSION = 7.0.0;
499+
CURRENT_PROJECT_VERSION = 7.0.1;
500500
ENABLE_STRICT_OBJC_MSGSEND = YES;
501501
ENABLE_TESTABILITY = YES;
502502
GCC_C_LANGUAGE_STANDARD = gnu99;
@@ -553,7 +553,7 @@
553553
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
554554
CODE_SIGN_IDENTITY = "";
555555
COPY_PHASE_STRIP = YES;
556-
CURRENT_PROJECT_VERSION = 7.0.0;
556+
CURRENT_PROJECT_VERSION = 7.0.1;
557557
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
558558
ENABLE_NS_ASSERTIONS = NO;
559559
ENABLE_STRICT_OBJC_MSGSEND = YES;

Diff for: DemoApps/tvOSDemo/tvOSDemo.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@
484484
CLANG_WARN_UNREACHABLE_CODE = YES;
485485
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
486486
COPY_PHASE_STRIP = NO;
487-
CURRENT_PROJECT_VERSION = 7.0.0;
487+
CURRENT_PROJECT_VERSION = 7.0.1;
488488
DEBUG_INFORMATION_FORMAT = dwarf;
489489
ENABLE_STRICT_OBJC_MSGSEND = YES;
490490
ENABLE_TESTABILITY = YES;
@@ -541,7 +541,7 @@
541541
CLANG_WARN_UNREACHABLE_CODE = YES;
542542
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
543543
COPY_PHASE_STRIP = NO;
544-
CURRENT_PROJECT_VERSION = 7.0.0;
544+
CURRENT_PROJECT_VERSION = 7.0.1;
545545
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
546546
ENABLE_NS_ASSERTIONS = NO;
547547
ENABLE_STRICT_OBJC_MSGSEND = YES;

Diff for: ObjcExceptionBridging.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = 'ObjcExceptionBridging'
4-
spec.version = '7.0.0'
4+
spec.version = '7.0.1'
55
spec.summary = 'A bridge to Objective-C exception handling, for use in Swift projects.'
66

77
spec.description = <<-DESC
@@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
1616
spec.platforms = { :ios => '8.0', :watchos => '2.0', :tvos => '9.0' }
1717
spec.requires_arc = true
1818

19-
spec.source = { :git => 'https://github.com/DaveWoodCom/XCGLogger.git', :tag => '7.0.0' }
19+
spec.source = { :git => 'https://github.com/DaveWoodCom/XCGLogger.git', :tag => '7.0.1' }
2020

2121
spec.ios.deployment_target = '8.0'
2222
spec.osx.deployment_target = '10.10'

Diff for: README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ in your repository folder.
5656

5757
Add the following line to your `Cartfile`.
5858

59-
```github "DaveWoodCom/XCGLogger" ~> 7.0.0```
59+
```github "DaveWoodCom/XCGLogger" ~> 7.0.1```
6060

6161
Then run `carthage update --no-use-binaries` or just `carthage update`. For details of the installation and usage of Carthage, visit [its project page][carthage].
6262

@@ -71,12 +71,12 @@ source 'https://github.com/CocoaPods/Specs.git'
7171
platform :ios, '8.0'
7272
use_frameworks!
7373
74-
pod 'XCGLogger', '~> 7.0.0'
74+
pod 'XCGLogger', '~> 7.0.1'
7575
```
7676

7777
Specifying the pod `XCGLogger` on its own will include the core framework. We're starting to add subspecs to allow you to include optional components as well:
7878

79-
`pod 'XCGLogger/UserInfoHelpers', '~> 7.0.0'`: Include some experimental code to help deal with using UserInfo dictionaries to tag log messages.
79+
`pod 'XCGLogger/UserInfoHelpers', '~> 7.0.1'`: Include some experimental code to help deal with using UserInfo dictionaries to tag log messages.
8080

8181
Then run `pod install`. For details of the installation and usage of CocoaPods, visit [its official web site][cocoapods].
8282

@@ -118,7 +118,7 @@ Add the following entry to your package's dependencies:
118118
### Backwards Compatibility
119119

120120
Use:
121-
* XCGLogger version [7.0.0][xcglogger-7.0.0] for Swift 5.0
121+
* XCGLogger version [7.0.1][xcglogger-7.0.1] for Swift 5.0
122122
* XCGLogger version [6.1.0][xcglogger-6.1.0] for Swift 4.2
123123
* XCGLogger version [6.0.4][xcglogger-6.0.4] for Swift 4.1
124124
* XCGLogger version [6.0.2][xcglogger-6.0.2] for Swift 4.0
@@ -568,9 +568,9 @@ The change log is now in its own file: [CHANGELOG.md](CHANGELOG.md)
568568
[badge-platforms]: https://img.shields.io/badge/Platforms-macOS%20%7C%20iOS%20%7C%20tvOS%20%7C%20watchOS-lightgray.svg?style=flat
569569
[badge-license]: https://img.shields.io/badge/License-MIT-lightgrey.svg?style=flat
570570
[badge-travis]: https://img.shields.io/travis/DaveWoodCom/XCGLogger/master.svg?style=flat
571-
[badge-swiftpm]: https://img.shields.io/badge/Swift_Package_Manager-v7.0.0-64a6dd.svg?style=flat
571+
[badge-swiftpm]: https://img.shields.io/badge/Swift_Package_Manager-v7.0.1-64a6dd.svg?style=flat
572572
[badge-cocoapods]: https://img.shields.io/cocoapods/v/XCGLogger.svg?style=flat
573-
[badge-carthage]: https://img.shields.io/badge/Carthage-v7.0.0-64a6dd.svg?style=flat
573+
[badge-carthage]: https://img.shields.io/badge/Carthage-v7.0.1-64a6dd.svg?style=flat
574574

575575
[badge-sponsors]: https://img.shields.io/badge/Sponsors-Cerebral%20Gardens-orange.svg?style=flat
576576
[badge-mastodon]: https://img.shields.io/badge/Mastodon-DaveWoodX-606A84.svg?style=flat
@@ -584,7 +584,7 @@ The change log is now in its own file: [CHANGELOG.md](CHANGELOG.md)
584584
[Firelog]: http://jogabo.github.io/firelog/
585585
[Firebase]: https://www.firebase.com/
586586

587-
[xcglogger-7.0.0]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/7.0.0
587+
[xcglogger-7.0.1]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/7.0.1
588588
[xcglogger-6.1.0]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/6.1.0
589589
[xcglogger-6.0.4]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/6.0.4
590590
[xcglogger-6.0.2]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/6.0.2

Diff for: Sources/XCGLogger/XCGLogger.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ open class XCGLogger: CustomDebugStringConvertible {
4646
public static let userInfoKeyInternal = "\(baseIdentifier).internal"
4747

4848
/// Library version number
49-
public static let versionString = "7.0.0"
49+
public static let versionString = "7.0.1"
5050

5151
/// Internal userInfo
5252
internal static let internalUserInfo: [String: Any] = [XCGLogger.Constants.userInfoKeyInternal: true]

Diff for: XCGLogger.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = 'XCGLogger'
4-
spec.version = '7.0.0'
4+
spec.version = '7.0.1'
55
spec.summary = 'A debug log module for use in Swift projects.'
66

77
spec.description = <<-DESC

Diff for: XCGLogger.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1430,7 +1430,7 @@
14301430
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
14311431
CODE_SIGN_IDENTITY = "";
14321432
COPY_PHASE_STRIP = NO;
1433-
CURRENT_PROJECT_VERSION = 7.0.0;
1433+
CURRENT_PROJECT_VERSION = 7.0.1;
14341434
ENABLE_STRICT_OBJC_MSGSEND = YES;
14351435
ENABLE_TESTABILITY = YES;
14361436
GCC_C_LANGUAGE_STANDARD = gnu99;
@@ -1493,7 +1493,7 @@
14931493
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
14941494
CODE_SIGN_IDENTITY = "";
14951495
COPY_PHASE_STRIP = YES;
1496-
CURRENT_PROJECT_VERSION = 7.0.0;
1496+
CURRENT_PROJECT_VERSION = 7.0.1;
14971497
ENABLE_NS_ASSERTIONS = NO;
14981498
ENABLE_STRICT_OBJC_MSGSEND = YES;
14991499
ENABLE_TESTABILITY = YES;

0 commit comments

Comments
 (0)