Skip to content

Commit

Permalink
Merge pull request SwiftyBeaver#233 from SwiftyBeaver/version-1.3.0
Browse files Browse the repository at this point in the history
version 1.3.0 - now with context parameter
  • Loading branch information
skreutzberger authored Jun 22, 2017
2 parents efa5f87 + b90bedb commit 91166f2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file following th
This project adheres to [Semantic Versioning](http://semver.org/).

----
<br/>
## 1.3.0 (2017-06-22)

##### Added

- New context parameter for more detailed logging by [@lgaches](https://github.com/lgaches)
- Support for more watchOS versions by [@basememara](https://github.com/basememara)

<br/>
## 1.2.2 (2017-05-04)

Expand Down
4 changes: 2 additions & 2 deletions Sources/SwiftyBeaver.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import Foundation
open class SwiftyBeaver {

/// version string of framework
public static let version = "1.2.2" // UPDATE ON RELEASE!
public static let version = "1.3.0" // UPDATE ON RELEASE!
/// build number of framework
public static let build = 1220 // version 0.7.1 -> 710, UPDATE ON RELEASE!
public static let build = 1300 // version 0.7.1 -> 710, UPDATE ON RELEASE!

public enum Level: Int {
case verbose = 0
Expand Down
4 changes: 2 additions & 2 deletions SwiftyBeaver.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SwiftyBeaver"
s.version = "1.2.2"
s.version = "1.3.0"
s.summary = "Convenient logging during development & release in Swift 2 & 3"

# This description is used to generate tags and improve search results.
Expand All @@ -21,6 +21,6 @@ Great for development & release due to its support for many logging destinations
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/SwiftyBeaver/SwiftyBeaver.git", :tag => "1.2.2" }
s.source = { :git => "https://github.com/SwiftyBeaver/SwiftyBeaver.git", :tag => "1.3.0" }
s.source_files = "sources"
end

0 comments on commit 91166f2

Please sign in to comment.