Skip to content

Commit

Permalink
chore: version bump 7.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveWoodCom committed Apr 29, 2024
1 parent 446cf3c commit 8c8ebf3
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

* **Version 7.1.2**: *(2024/04/28)* - Drops deployment targets down to the minimum allowed in Xcode 15 (iOS = 12.0, watchOS = 4.0, tvOS = 12.0, macOS = 10.13)
* **Version 7.1.3**: *(2024/04/28)* - Drops deployment targets down to the minimum allowed in Xcode 15.3 (iOS = 12.0, watchOS = 4.0, tvOS = 12.0, macOS = 10.13)
* **Version 7.1.1**: *(2024/04/22)* - Adds Privacy Manifest files (thanks @mithleshgomotive, @rinkietheridge-ban), updates deployment targets
* **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)
* **Version 7.0.0**: *(2019/03/26)* - Updated for Xcode 10.2/Swift 5.0, adds additional log levels: notice, alert, and emergency
Expand Down
4 changes: 2 additions & 2 deletions DemoApps/iOSDemo/iOSDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 7.1.2;
CURRENT_PROJECT_VERSION = 7.1.3;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
Expand Down Expand Up @@ -761,7 +761,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 7.1.2;
CURRENT_PROJECT_VERSION = 7.1.3;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
Expand Down
4 changes: 2 additions & 2 deletions DemoApps/macOSDemo/macOSDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 7.1.2;
CURRENT_PROJECT_VERSION = 7.1.3;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
Expand Down Expand Up @@ -553,7 +553,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "";
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 7.1.2;
CURRENT_PROJECT_VERSION = 7.1.3;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down
4 changes: 2 additions & 2 deletions DemoApps/tvOSDemo/tvOSDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 7.1.2;
CURRENT_PROJECT_VERSION = 7.1.3;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down Expand Up @@ -541,7 +541,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 7.1.2;
CURRENT_PROJECT_VERSION = 7.1.3;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down
4 changes: 2 additions & 2 deletions ObjcExceptionBridging.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = 'ObjcExceptionBridging'
spec.version = '7.1.2'
spec.version = '7.1.3'
spec.summary = 'A bridge to Objective-C exception handling, for use in Swift projects.'

spec.description = <<-DESC
Expand All @@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
spec.platforms = { :ios => '12.0', :watchos => '4.0', :tvos => '12.0', :osx => '10.13' }
spec.requires_arc = true

spec.source = { :git => 'https://github.com/DaveWoodCom/XCGLogger.git', :tag => '7.1.2' }
spec.source = { :git => 'https://github.com/DaveWoodCom/XCGLogger.git', :tag => '7.1.3' }

spec.ios.deployment_target = '12.0'
spec.osx.deployment_target = '10.13'
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ in your repository folder.

Add the following line to your `Cartfile`.

```github "DaveWoodCom/XCGLogger" ~> 7.1.2```
```github "DaveWoodCom/XCGLogger" ~> 7.1.3```

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].

Expand All @@ -70,12 +70,12 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12.0'
use_frameworks!
pod 'XCGLogger', '~> 7.1.2'
pod 'XCGLogger', '~> 7.1.3'
```

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:

`pod 'XCGLogger/UserInfoHelpers', '~> 7.1.2'`: Include some experimental code to help deal with using UserInfo dictionaries to tag log messages.
`pod 'XCGLogger/UserInfoHelpers', '~> 7.1.3'`: Include some experimental code to help deal with using UserInfo dictionaries to tag log messages.

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

Expand Down Expand Up @@ -117,7 +117,7 @@ Add the following entry to your package's dependencies:
### Backwards Compatibility

Use:
* XCGLogger version [7.1.2][xcglogger-7.1.2] for Swift 5.0
* XCGLogger version [7.1.3][xcglogger-7.1.3] for Swift 5.0
* XCGLogger version [6.1.0][xcglogger-6.1.0] for Swift 4.2
* XCGLogger version [6.0.4][xcglogger-6.0.4] for Swift 4.1
* XCGLogger version [6.0.2][xcglogger-6.0.2] for Swift 4.0
Expand Down Expand Up @@ -565,9 +565,9 @@ The change log is now in its own file: [CHANGELOG.md](CHANGELOG.md)
[badge-language]: https://img.shields.io/badge/Swift-1.x%20%7C%202.x%20%7C%203.x%20%7C%204.x%20%7C%205.x-orange.svg?style=flat
[badge-platforms]: https://img.shields.io/badge/Platforms-macOS%20%7C%20iOS%20%7C%20tvOS%20%7C%20watchOS-lightgray.svg?style=flat
[badge-license]: https://img.shields.io/badge/License-MIT-lightgrey.svg?style=flat
[badge-swiftpm]: https://img.shields.io/badge/Swift_Package_Manager-v7.1.2-64a6dd.svg?style=flat
[badge-swiftpm]: https://img.shields.io/badge/Swift_Package_Manager-v7.1.3-64a6dd.svg?style=flat
[badge-cocoapods]: https://img.shields.io/cocoapods/v/XCGLogger.svg?style=flat
[badge-carthage]: https://img.shields.io/badge/Carthage-v7.1.2-64a6dd.svg?style=flat
[badge-carthage]: https://img.shields.io/badge/Carthage-v7.1.3-64a6dd.svg?style=flat

[badge-sponsors]: https://img.shields.io/badge/Sponsors-Cerebral%20Gardens-orange.svg?style=flat
[badge-mastodon]: https://img.shields.io/badge/Mastodon-DaveWoodX-606A84.svg?style=flat
Expand All @@ -580,7 +580,7 @@ The change log is now in its own file: [CHANGELOG.md](CHANGELOG.md)
[XCGLoggerNSLoggerConnector]: https://github.com/markuswinkler/XCGLoggerNSLoggerConnector
[Firebase]: https://www.firebase.com/

[xcglogger-7.1.2]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/7.1.2
[xcglogger-7.1.3]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/7.1.3
[xcglogger-6.1.0]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/6.1.0
[xcglogger-6.0.4]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/6.0.4
[xcglogger-6.0.2]: https://github.com/DaveWoodCom/XCGLogger/releases/tag/6.0.2
Expand Down
2 changes: 1 addition & 1 deletion Sources/XCGLogger/XCGLogger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ open class XCGLogger: CustomDebugStringConvertible {
public static let userInfoKeyInternal = "\(baseIdentifier).internal"

/// Library version number
public static let versionString = "7.1.2"
public static let versionString = "7.1.3"

/// Internal userInfo
internal static let internalUserInfo: [String: Any] = [XCGLogger.Constants.userInfoKeyInternal: true]
Expand Down
2 changes: 1 addition & 1 deletion XCGLogger.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = 'XCGLogger'
spec.version = '7.1.2'
spec.version = '7.1.3'
spec.summary = 'A debug log module for use in Swift projects.'

spec.description = <<-DESC
Expand Down
8 changes: 4 additions & 4 deletions XCGLogger.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1456,8 +1456,8 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 7.1.2;
DYLIB_CURRENT_VERSION = 7.1.2;
CURRENT_PROJECT_VERSION = 7.1.3;
DYLIB_CURRENT_VERSION = 7.1.3;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
Expand Down Expand Up @@ -1520,8 +1520,8 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "";
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 7.1.2;
DYLIB_CURRENT_VERSION = 7.1.2;
CURRENT_PROJECT_VERSION = 7.1.3;
DYLIB_CURRENT_VERSION = 7.1.3;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down

0 comments on commit 8c8ebf3

Please sign in to comment.