From 00479834b6f20e755a301c0e4a15963392be6872 Mon Sep 17 00:00:00 2001 From: Syed Haris Ali Date: Sun, 24 Jan 2016 03:18:13 -0600 Subject: [PATCH] bumping version to 1.1.4 --- EZAudio.podspec | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/EZAudio.podspec b/EZAudio.podspec index a06619dc..6a77a7d9 100644 --- a/EZAudio.podspec +++ b/EZAudio.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "EZAudio" - s.version = "1.1.3" + s.version = "1.1.4" s.summary = "A simple, intuitive audio framework for iOS and OSX useful for anyone doing audio processing and/or audio-based visualizations." s.homepage = "https://github.com/syedhali/EZAudio" s.screenshots = "https://s3-us-west-1.amazonaws.com/ezaudio-media/EZAudioSummary.png" diff --git a/README.md b/README.md index 005f3ef3..7734e674 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Shows how to use the `EZMicrophone`, `EZOutput`, and the `EZAudioPlotGL` to pass Shows how to calculate the real-time FFT of the audio data coming from the `EZMicrophone` and the Accelerate framework. The audio data is plotted using two `EZAudioPlots` for the time and frequency displays. ### Documentation -The official documentation for EZAudio can be found here: http://cocoadocs.org/docsets/EZAudio/1.1.3/ +The official documentation for EZAudio can be found here: http://cocoadocs.org/docsets/EZAudio/1.1.4/
You can also generate the docset yourself using appledocs by running the appledocs on the EZAudio source folder. ##Getting Started @@ -135,14 +135,14 @@ To begin using `EZAudio` you must first make sure you have the proper build requ You can add EZAudio to your project in a few ways:

1.) The easiest way to use EZAudio is via
Cocoapods. Simply add EZAudio to your Podfile like so: ` -pod 'EZAudio', '~> 1.1.3' +pod 'EZAudio', '~> 1.1.4' ` ####Using EZAudio & The Amazing Audio Engine If you're also using the Amazing Audio Engine then use the `EZAudio/Core` subspec like so: ` -pod 'EZAudio/Core', '~> 1.1.3' +pod 'EZAudio/Core', '~> 1.1.4' ` 2.) EZAudio now supports Carthage (thanks Andrew and Tommaso!). You can refer to Carthage's installation for a how-to guide: