diff --git a/CHANGELOG.md b/CHANGELOG.md index d93d136..9e3fc4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +v0.1.11 +======= + +* Disable Async Testing when Specta is not compiled with Clang. +* Fixed failWithException: not passing thru to current test case. [rhgills] +* Fixed unused data dictionary crashing shared examples. [rhgills] +* Removed Warnings under LLVM GCC. +* Fixed release build not compiling due to implicitly synthesized properties. [kastiglione] + v0.1.10 ======= diff --git a/README.md b/README.md index c3476fd..fa23be1 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ target :MyApp do end target :MyAppTests do - pod 'Specta', '~> 0.1.10' + pod 'Specta', '~> 0.1.11' # pod 'Expecta', '~> 0.2.1' # expecta matchers # pod 'OCHamcrest', '~> 1.7' # hamcrest matchers # pod 'OCMock', '~> 2.0.1' # OCMock @@ -149,12 +149,15 @@ Check out Facebook's [xctool](https://github.com/facebook/xctool). ### CONTRIBUTORS +* Christian Niles [(nerdyc)](https://github.com/nerdyc) * Dan Palmer [(danpalmer)](https://github.com/danpalmer) * Justin Spahr-Summers [(jspahrsummers)](https://github.com/jspahrsummers) * Josh Abernathy [(joshaber)](https://github.com/joshaber) * Meiwin Fu [(meiwin)](https://github.com/meiwin) +* Robert Gilliam [(rhgills)](https://github.com/rhgills) * Shawn Morel [(strangemonad)](https://github.com/strangemonad) -* Christian Niles [(nerdyc)](https://github.com/nerdyc) +* Tom Brow [(brow)](https://github.com/brow) +* Tony Arnold [(tonyarnold)](https://github.com/tonyarnold) ## LICENSE diff --git a/Specta.podspec b/Specta.podspec index b0f0447..fde4af0 100644 --- a/Specta.podspec +++ b/Specta.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = 'Specta' - s.version = '0.1.10' + s.version = '0.1.11' s.license = 'MIT' s.summary = 'A light-weight TDD / BDD framework for Objective-C & Cocoa.' s.homepage = 'http://github.com/petejkim/specta' s.author = { 'Peter Jihoon Kim' => 'raingrove@gmail.com' } - s.source = { :git => 'https://github.com/petejkim/specta.git', :tag => 'v0.1.10' } + s.source = { :git => 'https://github.com/petejkim/specta.git', :tag => 'v0.1.11' } s.description = %{ Specta is a light-weight testing framework for Objective-C and Cocoa that