From 8cbdd7f5e256b2b347e2a387ab5b7f2d46d2bd2a Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Fri, 23 Mar 2012 22:23:05 +0100 Subject: [PATCH] 0.61 --- NEWS | 13 +++++++++++++ Rakefile | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index b69b98c7..ea27b759 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ += RubyMotion 0.61 = + + * Fixed a bug when doing `rake clean' on a project with vendored projects. + * Fixed a bug when the terminal echo could be off after an app crashes in + the simulator, due to the REPL's readline. + * Changed the compiler to not save local variables when creating blocks. + * The REPL now exposes special methods: #repl, #quit, #sessions and #help. + Use #help to know more. + * Fixed `motion support' to properly collect the version of Xcode for + installations in /Applications. + * Fixed the REPL to refresh the prompt in capture mode using a different + technique, to make it work in iTerm. + = RubyMotion 0.60 = * Fixed various bugs in the REPL (also, make it work under Snow Leopard). diff --git a/Rakefile b/Rakefile index 3a5e224d..c115fc89 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,5 @@ PLATFORMS_DIR = '/Applications/Xcode.app/Contents/Developer/Platforms' -PROJECT_VERSION = '0.60' +PROJECT_VERSION = '0.61' 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]