Skip to content

Commit

Permalink
Release v0.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgrove committed Oct 4, 2013
1 parent e4492dc commit b59c97b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
Crass Change History
====================

git
---
0.1.0 (2013-10-04)
------------------

* Tokenization is a little over 50% faster.

* Added tons of unit tests.

* Added `Crass.parse_properties` and `Crass::Parser.parse_properties`, which can
be used to parse the contents of an HTML element's `style` attribute.

Expand All @@ -21,7 +23,7 @@ git

* Fixed: "!important" is no longer included in the value of a `:property` node.

* Fixed: A variety of tokenization edge case bugs uncovered by tests.
* Fixed: A variety of tokenization bugs uncovered by tests.

* Fixed: Added a workaround for a possible spec bug when an `:at_keyword` is
encountered while consuming declarations.
Expand All @@ -37,4 +39,3 @@ git
------------------

* Initial release.

4 changes: 2 additions & 2 deletions crass.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ require './lib/crass/version'

Gem::Specification.new do |s|
s.name = 'crass'
s.summary = 'CSS parser based on the CSS Syntax Module Level 3 draft.'
s.description = 'Crass is a pure Ruby CSS parser based on the CSS Syntax Module Level 3 draft.'
s.summary = 'CSS parser based on the CSS Syntax Level 3 draft.'
s.description = 'Crass is a pure Ruby CSS parser based on the CSS Syntax Level 3 draft.'
s.version = Crass::VERSION
s.authors = ['Ryan Grove']
s.email = ['ryan@wonko.com']
Expand Down
2 changes: 1 addition & 1 deletion lib/crass/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# encoding: utf-8

module Crass
VERSION = '0.0.3'
VERSION = '0.1.0'
end

0 comments on commit b59c97b

Please sign in to comment.