Skip to content

Commit

Permalink
Release 0.2.0 (#13)
Browse files Browse the repository at this point in the history
* Drop deployment target to 8.0

* Update Changelog + Readme

* Update podspec
  • Loading branch information
BasThomas authored Dec 3, 2016
1 parent b024c84 commit c52bbfc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Analysis.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Analysis"
s.version = "0.1.0"
s.version = "0.2.0"
s.summary = "Analyse your strings."

s.description = <<-DESC
Expand Down
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# next

# [0.2.0](https://github.com/BasThomas/Analysis/releases/tag/0.2.0)

- Added `syllableCount()`, which counts the total amount of syllables of the `input`.
- Added `wordSyllables()`, which returns the syllables of every unique word.
- Added `fleschReadingEase()`, which calculates the [Flesch reading ease score](https://en.wikipedia.org/wiki/Flesch–Kincaid_readability_tests#Flesch_reading_ease).
- Added `fleschKincaidGradeLevel()`, which calculates the [Flesch-Kincaid grade level](https://en.wikipedia.org/wiki/Flesch–Kincaid_readability_tests#Flesch.E2.80.93Kincaid_grade_level).
- Dropped the deployment target from iOS `8.3` to `8.0`.

# [0.1.0](https://github.com/BasThomas/Analysis/releases/tag/0.1.0)
Initial release.
4 changes: 2 additions & 2 deletions Example/Analysis.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -495,7 +495,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
Expand Down
6 changes: 3 additions & 3 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
PODS:
- Analysis (0.1.0)
- Analysis (0.2.0)

DEPENDENCIES:
- Analysis (from `../`)

EXTERNAL SOURCES:
Analysis:
:path: "../"
:path: ../

SPEC CHECKSUMS:
Analysis: ab1cbd03a290a79c671425c34e43d94b7a620f24
Analysis: 00866c8642f25365be1797772e36f4277072f8f6

PODFILE CHECKSUM: 8aa19244f257b8174d0051e41788d104857daad3

Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Analysis is a tool that helps you extract useful information from strings. It ca
Analysis is available via CocoaPods.

```ruby
pod 'Analysis', '~> 0.1.0'
pod 'Analysis', '~> 0.2.0'
```

Then run `pod install`.
Expand Down

0 comments on commit c52bbfc

Please sign in to comment.