This commit is contained in:
Laurent Sansonetti
2012-01-20 12:06:17 +01:00
parent d3d7529b7b
commit e84333091f
2 changed files with 5 additions and 2 deletions

5
NEWS
View File

@@ -1,6 +1,9 @@
= RubyMotion 0.41 =
* New memory management system.
* New memory management system. Similar to ARC in design, uses the existing
autorelease pool infrastructure. No "real" GC. Works for CF objects, no
need to use CFRetain/CFRelease.
* Fixed a memory smasher in the dispatcher.
* Fixed a (pretty rare) crasher in the compiler.
* Fixed a bug in the simulator launcher, where environment variables would
not properly be propagated to the simulated app.

View File

@@ -1,5 +1,5 @@
PLATFORMS_DIR = '/Developer/Platforms'
PROJECT_VERSION = '0.41.pre3'
PROJECT_VERSION = '0.41'
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]