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]