bump to 0.21

This commit is contained in:
Laurent Sansonetti
2011-11-26 21:30:03 +01:00
parent e783c977f4
commit b4674cd98b
2 changed files with 14 additions and 1 deletions

13
NEWS
View File

@@ -1,3 +1,14 @@
= RubyMotion 0.21 =
* Rename the `package' rake task to `archive'.
* Fix the build system to use a different build directory per SDK version.
* Add support for QuartzCore.framework.
* Fix a crash when attempting to freeze certain objects (associative
reference assertion).
* Better tweets sample code (thanks Johannes Fahrenkrug).
* Add support for attr_*.
* Fix a crash when converting int64 CFNumbers into Ruby types.
= RubyMotion 0.20 =
* Fix misc GC bugs.
@@ -9,3 +20,5 @@
* Add support for app icons. Icon files can be created and copied into the
resources directory, then their filenames can be added to app.icons.
* Validate given sdk_version config variable.
Changelog not available for 0.18 or below.

View File

@@ -1,5 +1,5 @@
PLATFORMS_DIR = '/Developer/Platforms'
PROJECT_VERSION = '0.20'
PROJECT_VERSION = '0.21'
sim_sdks = Dir.glob(File.join(PLATFORMS_DIR, 'iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator*.sdk')).map do |path|
File.basename(path).scan(/^iPhoneSimulator(.+)\.sdk$/)[0][0]