Skip to content

Commit

Permalink
bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lewandowskit93 committed Feb 3, 2020
1 parent f4ed2e4 commit c81b29f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

## [0.4.0]
- Added Spied property wrapper for logging property access & changes

## [0.3.1]
Expand Down
2 changes: 1 addition & 1 deletion Configurations/Common.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SPY_BUNDLE_IDENTIFIER = com.appunite.spy
SPY_PROVISIONING_PROFILE_SPECIFIER =

VERSIONING_SYSTEM = apple-generic
PRODUCT_VERSION = 0.3.1
PRODUCT_VERSION = 0.4.0
SWIFT_VERSION = 5.0
CODE_SIGN_STYLE = Manual

9 changes: 8 additions & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ target 'Spy_iOS' do
end

target 'Spy_tvOS' do
platform :tvos, '10.10'
platform :tvos, '9.0'
pod 'SwiftLint'

# Pods for Spy
Expand All @@ -50,3 +50,10 @@ target 'Spy_tvOS' do
end

end

target 'Spy_watchOS' do
platform :watchos, '2.0'
pod 'SwiftLint'

# Pods for Spy
end
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ github "appunite/Spy"

To install Spy using **Swift Package Manager** go through following steps:

1. Add following package dependency in you **Package.swift** ``` .package(url: "https://github.com/appunite/Spy.git", from: "0.3.1") ```
1. Add following package dependency in you **Package.swift** ``` .package(url: "https://github.com/appunite/Spy.git", from: "0.4.0") ```
2. Add following target dependency in your **Package.swift** ``` dependencies: ["Spy"]) ```

For instance this is how it might look like:
Expand All @@ -64,7 +64,7 @@ let package = Package(
targets: ["YourLibrary"])
],
dependencies: [
.package(url: "https://github.com/appunite/Spy.git", from: "0.3.1")
.package(url: "https://github.com/appunite/Spy.git", from: "0.4.0")
],
targets: [
.target(
Expand Down
4 changes: 2 additions & 2 deletions Spy.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Spy"
spec.version = "0.3.1"
spec.version = "0.4.0"
spec.summary = "Spy is a flexible, lightweight, multiplatform logging utility written in pure Swift."
spec.description = <<-DESC
Spy is a flexible, lightweight, multiplatform logging utility written in pure Swift. It allows to log on different levels and channels which you can define on your own depending on your needs.
Expand All @@ -12,7 +12,7 @@ Pod::Spec.new do |spec|
spec.source_files = "Spy/**/*.swift"
spec.swift_versions = "5.1"
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.9'
spec.osx.deployment_target = '10.10'
spec.tvos.deployment_target = '9.0'
spec.watchos.deployment_target = '2.0'
end

0 comments on commit c81b29f

Please sign in to comment.