Skip to content

Commit

Permalink
Updated for 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Nov 24, 2017
1 parent 5b71654 commit 37e3119
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [0.1](https://github.com/nicklockwood/Sprinter/releases/tag/0.1) (2017-11-22)
## [0.2.0](https://github.com/nicklockwood/Sprinter/releases/tag/0.2.0) (2017-11-24)

- Added support for parameterized field width and precision
- Significantly improved performance for common format options

## [0.1.0](https://github.com/nicklockwood/Sprinter/releases/tag/0.1.0) (2017-11-22)

- First release
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ The entire Sprinter API is encapsulated in a single file, and everything public

To install Sprinter using CocoaPods, add the following to your Podfile:

pod 'Sprinter', '~> 0.1.0'
pod 'Sprinter', '~> 0.2.0'

Sprinter works with Swift 3.2 and 4.x
Sprinter works with Swift 3.2 and 4.x and supports iOS 9 or macOS 10.0 and above


## Integration
Expand Down Expand Up @@ -168,4 +168,4 @@ This function provides:
* Encapsulated error handling, which will crash in development but fail gracefully in production
* Thread-safe caching of `FormatString` instances for better performance

This is just an example approach, but it should work for most typical use cases.
This is just an example approach, but it should work for most use cases.
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<string>0.2.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Sprinter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Sprinter.swift
// Sprinter
//
// Version 0.1.0
// Version 0.2.0
//
// Created by Nick Lockwood on 20/11/2017.
// Copyright © 2017 Nick Lockwood. All rights reserved.
Expand Down
4 changes: 2 additions & 2 deletions Sprinter.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Sprinter",
"version": "0.1.0",
"version": "0.2.0",
"license": {
"type": "MIT",
"file": "LICENSE.md"
Expand All @@ -10,7 +10,7 @@
"authors": "Nick Lockwood",
"source": {
"git": "https://github.com/nicklockwood/Sprinter.git",
"tag": "0.1.0"
"tag": "0.2.0"
},
"source_files": "Sources",
"platforms": {
Expand Down

0 comments on commit 37e3119

Please sign in to comment.