Skip to content

Commit 481f617

Browse files
committed
bump version in a few more places, format older changelog entries
1 parent e5a7921 commit 481f617

File tree

3 files changed

+24
-23
lines changed

3 files changed

+24
-23
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# scssphp v0.0.5
1+
# scssphp v0.0.7
22
### <http://leafo.net/scssphp>
33

44
[![Build Status](https://secure.travis-ci.org/leafo/scssphp.png)](http://travis-ci.org/leafo/scssphp)
55

66
`scssphp` is a compiler for SCSS written in PHP.
77

8-
It implements SCSS 3.2.7. It does not implement the SASS syntax, only the SCSS
8+
It implements SCSS 3.2.9. It does not implement the SASS syntax, only the SCSS
99
syntax.
1010

1111
Checkout the homepage, <http://leafo.net/scssphp>, for directions on how to use.

site/index.md

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The entire compiler comes in a single class file ready for including in any
77
kind of project in addition to a command line tool for running the compiler
88
from the terminal.
99

10-
**scssphp** implements SCSS (3.2.7). It does not implement the SASS syntax,
10+
**scssphp** implements SCSS (3.2.9). It does not implement the SASS syntax,
1111
only the SCSS syntax.
1212

1313
Follow the author on twitter: [@moonscript](http://twitter.com/moonscript).
@@ -104,10 +104,7 @@ Find any issues? I'd love to fix them for you, post about them on [the issues tr
104104
<a name="changelog"></a>
105105
## Changelog
106106

107-
* **0.0.7**
108-
* Forgot to bump the version number. Re-tagged as v0.0.7.
109-
110-
* **0.0.6**
107+
* **0.0.7** -- May 24, 2013
111108
* Port various fixes from leafo/lessphp.
112109
* Improve filter precision.
113110
* Parsing large image data-urls does not work.
@@ -118,7 +115,6 @@ Find any issues? I'd love to fix them for you, post about them on [the issues tr
118115
* Fix mixin content includes (James Shannon, Christian Brandt).
119116
* Fix passing of varargs to another mixin.
120117
* Fix interpolation bug in expToString() (Matti Jarvinen).
121-
122118
* **0.0.5** -- March 11, 2013
123119
* Better compile time errors
124120
* Fix top level properties inside of a nested `@media` (Anthon Pang)
@@ -130,20 +126,25 @@ Find any issues? I'd love to fix them for you, post about them on [the issues tr
130126
* Add variable argument support (Martin Hasoň)
131127
* Add zip, index, comparable functions (Martin Hasoň)
132128
* A bunch of parser and bug fixes
133-
* **0.0.4** -- [Import path can be a function](docs/#import_paths) (Christian
134-
Lück). Correctly parse media queries with more than one item (Christian
135-
Lück). Add `ie_hex_str`, `abs`, `min`, `max` functions (Martin Hasoň), ignore
136-
expressions inside of `calc()` (Martin Hasoň), Improve operator evaluation
137-
(Martin Hasoň), Add
138-
[`@content`](http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#mixin-content)
139-
support. Misc bug fixes. (Nov 3nd, 2012)
140-
* **0.0.3** -- Add missing and/or/not operators. Expression evaluation happens
141-
correctly. Import file caching and _partial filename support. Misc bug fixes.
142-
(August 2nd, 2012)
143-
* **0.0.2** -- SCSS server is aware of imports, added custom function
144-
interface, compressed formatter, <a
145-
href="http://leafo.net/scssphp/docs/">documentation</a> (July 30th, 2012)
146-
* Initial Release v0.0.1 (July 29th, 2012)
129+
* **0.0.4** -- Nov 3nd, 2012
130+
* [Import path can be a function](docs/#import_paths) (Christian Lück).
131+
* Correctly parse media queries with more than one item (Christian Lück).
132+
* Add `ie_hex_str`, `abs`, `min`, `max` functions (Martin Hasoň)
133+
* Ignore expressions inside of `calc()` (Martin Hasoň)
134+
* Improve operator evaluation (Martin Hasoň)
135+
* Add [`@content`](http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#mixin-content) support.
136+
* Misc bug fixes.
137+
* **0.0.3** -- August 2nd, 2012
138+
* Add missing and/or/not operators.
139+
* Expression evaluation happens correctly.
140+
* Import file caching and _partial filename support.
141+
* Misc bug fixes.
142+
* **0.0.2** -- July 30th, 2012
143+
* SCSS server is aware of imports
144+
* added custom function interface
145+
* compressed formatter
146+
* wrote <a href="http://leafo.net/scssphp/docs/">documentation</a>
147+
* Initial Release v0.0.1 -- July 29th, 2012
147148

148149
<a name="comments"></a>
149150
## Comments

site/site.moon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require "sitegen"
33
tools = require "sitegen.tools"
44

55
sitegen.create_site =>
6-
@current_version = "0.0.5"
6+
@current_version = "0.0.7"
77
@title = "SCSS Compiler in PHP"
88

99
scssphp = tools.system_command "pscss < %s > %s", "css"

0 commit comments

Comments
 (0)