Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.0 #13

Merged
merged 3 commits into from
Dec 3, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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