Revision: 5244 http://trac.macosforge.org/projects/ruby/changeset/5244 Author: lsansonetti@apple.com Date: 2011-02-24 16:09:35 -0800 (Thu, 24 Feb 2011) Log Message: ----------- prepare blog post for 0.9 release Modified Paths: -------------- MacRubyWebsite/trunk/content/_header.txt MacRubyWebsite/trunk/content/downloads.txt MacRubyWebsite/trunk/content/source.txt Added Paths: ----------- MacRubyWebsite/trunk/content/blog/2011/ MacRubyWebsite/trunk/content/blog/2011/02/ MacRubyWebsite/trunk/content/blog/2011/02/24/ MacRubyWebsite/trunk/content/blog/2011/02/24/macruby09.txt MacRubyWebsite/trunk/content/blog/2011/02/index.txt MacRubyWebsite/trunk/content/blog/2011/index.txt Modified: MacRubyWebsite/trunk/content/_header.txt =================================================================== --- MacRubyWebsite/trunk/content/_header.txt 2011-02-24 00:35:50 UTC (rev 5243) +++ MacRubyWebsite/trunk/content/_header.txt 2011-02-25 00:09:35 UTC (rev 5244) @@ -2,7 +2,7 @@ filter: erb --- <div id="current_version"> - Current Version: 0.8 + Current Version: 0.9 </div> <div id="logo"> <a href="/"><img src="/images/macruby_logo.png" alt="MacRuby" id="logo" /></a> Added: MacRubyWebsite/trunk/content/blog/2011/02/24/macruby09.txt =================================================================== --- MacRubyWebsite/trunk/content/blog/2011/02/24/macruby09.txt (rev 0) +++ MacRubyWebsite/trunk/content/blog/2011/02/24/macruby09.txt 2011-02-25 00:09:35 UTC (rev 5244) @@ -0,0 +1,28 @@ +--- +title: MacRuby 0.9 +created_at: 2011-02-24 16:05:17.841234 -08:00 +blog_post: true +layout: blog_entry +author: lrz +filter: + - erb + - textile +--- +<% @page[:excerpt] = capture_erb do %> +We are glad to announce the release of MacRuby 0.9, after about two months of development since the last release. +<% end %> +<%= RedCloth.new(@page.excerpt).to_html %> + +This is yet another release focused on stability, compatibility and performance improvements. Users of MacRuby are encouraged to upgrade. + +You can download it from "here":http://www.macruby.org/files/MacRuby%200.9.zip. Please note that this package only runs on Snow Leopard (10.6) or later. Older Mac OS X versions are no longer supported. + +Please give it a try and "let us know":/contact-us.html of any problems you find! + +The "complete release notes":http://todo are available. + +h3. Converging for 1.0 + +We are currently converting towards a first stable release of MacRuby, 1.0. We intend to deliver frequent releases until we reach that goal. + +We do not expect further releases to include significant features, as we are now focusing on stability and compatibility issues. Added: MacRubyWebsite/trunk/content/blog/2011/02/index.txt =================================================================== --- MacRubyWebsite/trunk/content/blog/2011/02/index.txt (rev 0) +++ MacRubyWebsite/trunk/content/blog/2011/02/index.txt 2011-02-25 00:09:35 UTC (rev 5244) @@ -0,0 +1,22 @@ +--- +title: 02 +created_at: 2011-02-24 16:05:17.833331 -08:00 +filter: erb +dirty: true +--- +<h2><%= h(@page.title) %></h2> + +<% + articles = @pages.find(:all, :in_directory => @page.dir, :recursive => true, + :sort_by => "created_at", :reverse => true, :blog_post => true) + articles.delete(@page) + paginate(articles, 10) do |page| +-%> +<div class="article"> + <h1><%= link_to_page(page) %><span class="date">(<%= page.created_at.strftime('%Y-%m-%d') %>)</span></h1> + + <div class="body"> + <%= render(page) %> + </div> +</div> +<% end -%> Added: MacRubyWebsite/trunk/content/blog/2011/index.txt =================================================================== --- MacRubyWebsite/trunk/content/blog/2011/index.txt (rev 0) +++ MacRubyWebsite/trunk/content/blog/2011/index.txt 2011-02-25 00:09:35 UTC (rev 5244) @@ -0,0 +1,22 @@ +--- +title: 2011 +created_at: 2011-02-24 16:05:17.812426 -08:00 +filter: erb +dirty: true +--- +<h2><%= h(@page.title) %></h2> + +<% + articles = @pages.find(:all, :in_directory => @page.dir, :recursive => true, + :sort_by => "created_at", :reverse => true, :blog_post => true) + articles.delete(@page) + paginate(articles, 10) do |page| +-%> +<div class="article"> + <h1><%= link_to_page(page) %><span class="date">(<%= page.created_at.strftime('%Y-%m-%d') %>)</span></h1> + + <div class="body"> + <%= render(page) %> + </div> +</div> +<% end -%> Modified: MacRubyWebsite/trunk/content/downloads.txt =================================================================== --- MacRubyWebsite/trunk/content/downloads.txt 2011-02-24 00:35:50 UTC (rev 5243) +++ MacRubyWebsite/trunk/content/downloads.txt 2011-02-25 00:09:35 UTC (rev 5244) @@ -10,7 +10,7 @@ h2. Latest Stable Release <p> -You can download <a href="http://www.macruby.org/files/MacRuby%200.8.zip">MacRuby 0.8</a> as a standalone binary installer. +You can download <a href="http://www.macruby.org/files/MacRuby%200.9.zip">MacRuby 0.9</a> as a standalone binary installer. <em>Note: this release will only work on Intel machines running Snow Leopard (10.6) or higher.</em> </p> Modified: MacRubyWebsite/trunk/content/source.txt =================================================================== --- MacRubyWebsite/trunk/content/source.txt 2011-02-24 00:35:50 UTC (rev 5243) +++ MacRubyWebsite/trunk/content/source.txt 2011-02-25 00:09:35 UTC (rev 5244) @@ -15,10 +15,10 @@ $ svn co http://svn.macosforge.org/repository/ruby/MacRuby/trunk MacRuby-trunk </pre> -If you want to grab the sources of a specific release, look into the tags directory. For example, to grab the sources of the 0.8 release: +If you want to grab the sources of a specific release, look into the tags directory. For example, to grab the sources of the latest release: <pre class="commands"> -$ svn co http://svn.macosforge.org/repository/ruby/MacRuby/tags/0.8 MacRuby-0.8 +$ svn co http://svn.macosforge.org/repository/ruby/MacRuby/tags/0.9 MacRuby-0.9 </pre> For building instructions, please refer to README.rdoc file, but the basic build instructions are:
participants (1)
-
source_changes@macosforge.org