Skip to content

Commit 20eb58f

Browse files
committed
Version bump, 1.8.1
1 parent b857e62 commit 20eb58f

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,20 +115,21 @@ There are convenience methods for each log level:
115115

116116
If you find this library helpful, you'll definitely find these other tools helpful:
117117

118-
Watchdog: http://watchdogforxcode.com/
118+
Watchdog: http://watchdogforxcode.com/
119+
Slender: http://martiancraft.com/products/slender
120+
Briefs: http://giveabrief.com/
119121

120-
Slender: http://martiancraft.com/products/slender
121-
122-
Briefs: http://giveabrief.com/
122+
Also, please check out my book **Swift for the Really Impatient** http://swiftforthereallyimpatient.com/
123123

124124

125125
###Change Log
126126

127+
* **Version 1.8.1**: *(2014/12/31)* - Added a workaround to the Swift compiler's optimization bug, restored optimization level back to Fastest
127128
* **Version 1.8**: *(2014/11/16)* - Added warning log level (Issue #16)
128129
* **Version 1.7**: *(2014/09/27)* - Reorganized to be used as a subproject instead of a framework, fixed threading
129130
* **Version 1.6**: *(2014/09/09)* - Updated for Xcode 6.1 Beta 1
130131
* **Version 1.5**: *(2014/08/23)* - Updated for Xcode 6 Beta 6
131-
* **Version 1.4**: *(2014/08/04)* - Updated for Xcode 6 Beta 5, removed __FUNCTION__ workaround
132+
* **Version 1.4**: *(2014/08/04)* - Updated for Xcode 6 Beta 5, removed `__FUNCTION__` workaround
132133
* **Version 1.3**: *(2014/07/27)* - Updated to use public/internal/private access modifiers
133134
* **Version 1.2**: *(2014/07/01)* - Added exec methods to selectively execute code
134135
* **Version 1.1**: *(2014/06/22)* - Changed the internal architecture to allow for more flexibility

XCGLogger/Library/XCGLogger.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@
378378
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
379379
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
380380
COPY_PHASE_STRIP = NO;
381-
CURRENT_PROJECT_VERSION = 1.8;
381+
CURRENT_PROJECT_VERSION = 1.8.1;
382382
ENABLE_STRICT_OBJC_MSGSEND = YES;
383383
GCC_C_LANGUAGE_STANDARD = gnu99;
384384
GCC_DYNAMIC_NO_PIC = NO;
@@ -424,7 +424,7 @@
424424
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
425425
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
426426
COPY_PHASE_STRIP = YES;
427-
CURRENT_PROJECT_VERSION = 1.8;
427+
CURRENT_PROJECT_VERSION = 1.8.1;
428428
ENABLE_NS_ASSERTIONS = NO;
429429
ENABLE_STRICT_OBJC_MSGSEND = YES;
430430
GCC_C_LANGUAGE_STANDARD = gnu99;

XCGLogger/Library/XCGLogger/XCGLogger.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ public class XCGLogger : DebugPrintable {
289289
public static let baseFileLogDestinationIdentifier = "com.cerebralgardens.xcglogger.logdestination.file"
290290
public static let nsdataFormatterCacheIdentifier = "com.cerebralgardens.xcglogger.nsdataFormatterCache"
291291
public static let logQueueIdentifier = "com.cerebralgardens.xcglogger.queue"
292-
public static let versionString = "1.8"
292+
public static let versionString = "1.8.1"
293293
}
294294

295295
// MARK: - Enums

0 commit comments

Comments
 (0)