diff --git a/Analysis.podspec b/Analysis.podspec index 254f284..9f64e44 100644 --- a/Analysis.podspec +++ b/Analysis.podspec @@ -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 diff --git a/Changelog.md b/Changelog.md index f792f45..c521830 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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. diff --git a/Example/Analysis.xcodeproj/project.pbxproj b/Example/Analysis.xcodeproj/project.pbxproj index a7d1bfa..f576297 100644 --- a/Example/Analysis.xcodeproj/project.pbxproj +++ b/Example/Analysis.xcodeproj/project.pbxproj @@ -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; @@ -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"; diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 6d34134..0f5d591 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -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 diff --git a/Readme.md b/Readme.md index 4c50f5c..9a35482 100644 --- a/Readme.md +++ b/Readme.md @@ -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`.