Skip to content

Commit

Permalink
v2.1.0 - added OSLog API Support
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Kreutzberger <s.kreutzberger@googlemail.com>
  • Loading branch information
skreutzberger committed Apr 22, 2024
1 parent beb4aae commit 1ae1f8f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,11 +6,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
----
<br/>

## 2.1.0 (2024-04-22)

##### Added
- Support for OSLog API plus 2 new levels [@WillSuo-Github](https://github.com/WillSuo-Github)

<br/>

## 2.0.2 (2024-04-22)

##### Added
- Privacy Manifest to Cocoapods file [@lixiang1994](https://github.com/lixiang1994)

<br/>

## 2.0.1 (2024-04-15)

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

/// version string of framework
public static let version = "2.0.2" // UPDATE ON RELEASE!
public static let version = "2.1.0" // UPDATE ON RELEASE!
/// build number of framework
public static let build = 2020 // version 1.6.2 -> 1620, UPDATE ON RELEASE!
public static let build = 2100 // version 1.6.2 -> 1620, UPDATE ON RELEASE!

public enum Level: Int {
case verbose = 0
Expand Down
4 changes: 2 additions & 2 deletions SwiftyBeaver.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SwiftyBeaver"
s.version = "2.0.2"
s.version = "2.1.0"
s.summary = "Convenient logging during development & release in Swift 4 & 5."

# This description is used to generate tags and improve search results.
Expand All @@ -21,7 +21,7 @@ Great for development & release due to its support for many logging destinations
s.watchos.deployment_target = "6.2"
s.tvos.deployment_target = "13.4"
s.osx.deployment_target = "10.15.4"
s.source = { :git => "https://github.com/SwiftyBeaver/SwiftyBeaver.git", :tag => "2.0.2" }
s.source = { :git => "https://github.com/SwiftyBeaver/SwiftyBeaver.git", :tag => "2.1.0" }
s.source_files = "Sources"
s.swift_versions = ['4.0', '4.2', '5.0', '5.1']
s.resource_bundles = {"SwiftyBeaver" => 'PrivacyInfo.xcprivacy'}
Expand Down

0 comments on commit 1ae1f8f

Please sign in to comment.