Skip to content

Commit

Permalink
version 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
petejkim committed Jul 18, 2013
1 parent e0f5134 commit 5657002
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
9 changes: 9 additions & 0 deletions 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
=======

Expand Down
7 changes: 5 additions & 2 deletions README.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions 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
Expand Down

0 comments on commit 5657002

Please sign in to comment.