From 144a3b27a130524acec33f4a738d70ae32436d16 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sun, 24 Apr 2011 22:21:10 -0700 Subject: [PATCH 1/5] Bump version and assign a name. --- Gemfile.lock | 2 +- VERSION.yml | 4 ++-- lib/compass/commands/print_version.rb | 3 +++ lib/compass/version.rb | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index f329954b..08c7989f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,7 +7,7 @@ GIT PATH remote: . specs: - compass (0.11.beta.7.a997fa2) + compass (0.11.0) chunky_png (~> 1.1.1) fssm (>= 0.2.7) sass (>= 3.1.0.alpha.249) diff --git a/VERSION.yml b/VERSION.yml index 899da300..fc1a50b1 100644 --- a/VERSION.yml +++ b/VERSION.yml @@ -1,5 +1,5 @@ --- :major: 0 :minor: 11 -:state: beta -:build: 7 +:build: 0 +:name: Antares diff --git a/lib/compass/commands/print_version.rb b/lib/compass/commands/print_version.rb index 0fa8da3a..449964b5 100644 --- a/lib/compass/commands/print_version.rb +++ b/lib/compass/commands/print_version.rb @@ -57,6 +57,9 @@ Options: def long_output_string lines = [] lines << "Compass #{::Compass.version[:string]}" + if name = ::Compass.version[:name] + lines.last << " (#{name})" + end lines << "Copyright (c) 2008-#{Time.now.year} Chris Eppstein" lines << "Released under the MIT License." lines << "Compass is charityware." diff --git a/lib/compass/version.rb b/lib/compass/version.rb index f7eaa141..277ac1e2 100644 --- a/lib/compass/version.rb +++ b/lib/compass/version.rb @@ -23,7 +23,7 @@ module Compass def read_version require 'yaml' @version = YAML::load(File.read(scope('VERSION.yml'))) - @version[:teeny] = @version[:patch] + @version[:teeny] = @version[:patch] @version[:string] = "#{@version[:major]}.#{@version[:minor]}" @version[:string] << ".#{@version[:patch]}" if @version[:patch] @version[:string] << ".#{@version[:state]}" if @version[:state] From 47b8fd4b550e386c7413638667292fe0691b4032 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sun, 24 Apr 2011 22:33:49 -0700 Subject: [PATCH 2/5] Credits. --- .../posts/2011-04-24-v011-release.markdown | 30 ++++++++----------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/doc-src/content/posts/2011-04-24-v011-release.markdown b/doc-src/content/posts/2011-04-24-v011-release.markdown index 06c788f9..7893b630 100644 --- a/doc-src/content/posts/2011-04-24-v011-release.markdown +++ b/doc-src/content/posts/2011-04-24-v011-release.markdown @@ -104,7 +104,7 @@ Blueprint is 1.0 now and the Compass port is updated to match the changes there. ## New Website -As you can see, we have a spiffy new website design from Compass Core team member [Brandon](http://brandonmathis.com). A testament to the separation of content and presentation, most of this redesign was done by throwing out our old stylesheets and building new ones. If you don't like the light text on dark background theme, you can turn on the lights by clicking the power button in the upper right hand corner of every page. +As you can see, we have a spiffy new website design from Compass Core team member [Brandon](http://brandonmathis.com/). A testament to the separation of content and presentation, most of this redesign was done by throwing out our old stylesheets and building new ones. If you don't like the light text on dark background theme, you can turn on the lights by clicking the power button in the upper right hand corner of every page. ## Much, Much More @@ -114,30 +114,26 @@ There's more features in this release than would fit into this post. Here's some * Compilation Callback support * Trigonometric functions +Read the [CHANGELOG](/CHANGELOG/) for all the details. + Additionally, expect a point release to follow shortly with support for: * Rails 3.1 Lastly, Compass v0.11 will have point releases as needed to adapt to changes in browser support for the CSS3 module. -Read the [CHANGELOG](/CHANGELOG/) for all the details. - - - - - - - - - - - - - - - +## Many Thanks +Compass wouldn't be possible without Nathan Weizenbaum and his hard work on Sass. The latest Sass release +provides a ton of great features that have made this Compass release possible. +Compass is far to big for one person to manage it now. I'd like to thank the hard work of the Compass core team members: +* [Eric Meyer](http://eric.oddbird.net/) +* [Brandon Mathis](http://brandonmathis.com/) +* [Scott Davis](https://github.com/jetviper21) +* [Nico Hagenburger](http://www.hagenburger.net/) +Additionally, there were commits from 10 other great folks in this release and there's been [contributions from 68 people](https://github.com/chriseppstein/compass/contributors) in total so far. +Lastly thanks to the hundreds, if not thousands, of users who have helped test this release and provided valuable feedback, bug reports, and documentation suggestions. Together, we are making a real stylesheet framework and simplifying the lives of web developers across the world. From 4d3ca90e8287b08f49886db87c2970c81402ba4f Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sun, 24 Apr 2011 23:29:29 -0700 Subject: [PATCH 3/5] Add comments to blog posts --- doc-src/layouts/blog.haml | 1 + 1 file changed, 1 insertion(+) diff --git a/doc-src/layouts/blog.haml b/doc-src/layouts/blog.haml index 0f947e97..45cdb55d 100644 --- a/doc-src/layouts/blog.haml +++ b/doc-src/layouts/blog.haml @@ -18,6 +18,7 @@ Version: %a.number(href="/CHANGELOG/")= compass_version = yield + #comments= render "partials/disqus_comments" %footer(role="contentinfo")= render "partials/footer" = @item[:content_for_javascripts] = render "partials/analytics" From 5528a7a51e6e6c9b5f8c42b272d7d0054bafcc44 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 25 Apr 2011 11:07:27 -0700 Subject: [PATCH 4/5] Update gemspec to pick up the stable version of sass. --- compass.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compass.gemspec b/compass.gemspec index 9602227c..87e2436f 100644 --- a/compass.gemspec +++ b/compass.gemspec @@ -15,8 +15,8 @@ Gem::Specification.new do |gemspec| gemspec.rubygems_version = "1.3.5" gemspec.summary = %q{A Real Stylesheet Framework} - gemspec.add_dependency 'sass', '>= 3.1.0.alpha.249' - gemspec.add_dependency 'chunky_png', '~> 1.1.1' + gemspec.add_dependency 'sass', '~> 3.1' + gemspec.add_dependency 'chunky_png', '~> 1.1' gemspec.add_dependency 'fssm', '>= 0.2.7' gemspec.files = %w(README.markdown LICENSE.markdown VERSION.yml Rakefile) From a3a1f26ea16613cf20f9afd068233ad91e7537d0 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 25 Apr 2011 11:08:18 -0700 Subject: [PATCH 5/5] Bump version for release. --- VERSION.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION.yml b/VERSION.yml index fc1a50b1..99382bed 100644 --- a/VERSION.yml +++ b/VERSION.yml @@ -1,5 +1,5 @@ --- :major: 0 :minor: 11 -:build: 0 +:build: 1 :name: Antares