Skip to content

Commit f27781b

Browse files
committed
Updated version number to 1.2.0
1 parent 4117c9b commit f27781b

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Log4swift changelog
22

3+
## 1.2.0
4+
Addeed an injectable timeProvider on loggers, to improve testability of code using Log4swift (Thanks Sergei)
5+
36
## 1.1.0
47
Long due version !
58
- Removed warnings for swift 5

Diff for: 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>1.1.0</string>
18+
<string>1.2.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Diff for: Log4swift.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Log4swift"
3-
s.version = "1.1.0"
3+
s.version = "1.2.0"
44
s.summary = "A looging library written in swift."
55

66
s.description = <<-DESC
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
2424
s.osx.deployment_target = "10.10"
2525
s.swift_versions = ['4.0', '4.1', '4.2', '5.0']
2626

27-
s.source = { :git => "https://github.com/jduquennoy/Log4swift.git", :tag => "v1.1.0" }
27+
s.source = { :git => "https://github.com/jduquennoy/Log4swift.git", :tag => "v1.2.0" }
2828

2929
s.source_files = "Log4swift", "Log4swift/**/*.{swift,h,m}", "Third parties/**/*.{h,m}"
3030

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@ Add those lines to your Podfile to embed this library in an iOS project (with th
3131

3232
```
3333
platform :ios, '8'
34-
pod 'Log4swift', '1.1.0'
34+
pod 'Log4swift', '1.2.0'
3535
use_frameworks!
3636
```
3737
And in an OS X project :
3838

3939
```
4040
platform :osx, '10.10'
41-
pod 'Log4swift', '1.1.0'
41+
pod 'Log4swift', '1.2.0'
4242
use_frameworks!
4343
```
4444

4545
### Carthage
4646
Add this line to your Cartfile (with the version you want):
4747

4848
```
49-
github "jduquennoy/Log4swift" ~> 1.1.0
49+
github "jduquennoy/Log4swift" ~> 1.2.0
5050
```
5151

5252
## Features

0 commit comments

Comments
 (0)