Skip to content

Commit

Permalink
bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lewandowskit93 committed Jan 24, 2020
1 parent c9cdb15 commit c9068b5
Show file tree
Hide file tree
Showing 5 changed files with 137 additions and 135 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.2.0]
- Add decorated formatter
- Add decorator for level color changing
- Add decorator for level emoji prefixes
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.1.0
PRODUCT_VERSION = 0.2.0
SWIFT_VERSION = 5.0
CODE_SIGN_STYLE = Manual

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,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.1.0") ```
1. Add following package dependency in you **Package.swift** ``` .package(url: "https://github.com/appunite/Spy.git", from: "0.2.0") ```
2. Add following tatget dependency in your **Package.swift** ``` dependencies: ["Spy"]) ```

For instance this is how it might look like:
Expand All @@ -63,7 +63,7 @@ let package = Package(
targets: ["YourLibrary"])
],
dependencies: [
.package(url: "https://github.com/appunite/Spy.git", from: "0.1.0")
.package(url: "https://github.com/appunite/Spy.git", from: "0.2.0")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion 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.1.0"
spec.version = "0.2.0"
spec.summary = "Spy is a flexible, lightweight, multiplatform logging utility written in pure Swift."
spec.homepage = "https://github.com/appunite/Spy"
spec.license = { :type => "MIT", :file => "LICENSE.md" }
Expand Down
Loading

0 comments on commit c9068b5

Please sign in to comment.