From e84333091f19305ea8ca192b59d33ed88d669276 Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Fri, 20 Jan 2012 12:06:17 +0100 Subject: [PATCH] 0.41 --- NEWS | 5 ++++- Rakefile | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 92720672..97ff809b 100644 --- a/NEWS +++ b/NEWS @@ -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. diff --git a/Rakefile b/Rakefile index 1ab20aca..36a7c435 100644 --- a/Rakefile +++ b/Rakefile @@ -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]