Skip to content
This repository has been archived by the owner on Sep 6, 2022. It is now read-only.

Commit

Permalink
Bump version to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mquandalle committed Apr 25, 2015
1 parent e7b2d1f commit 5b113e8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.4.2

* Fix tags support inside “dot-notation” blocks #92 #109

## v0.4.1

* Fix a package dependency issue #104
Expand Down
5 changes: 3 additions & 2 deletions packages/jade-compiler/package.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
Package.describe({
summary: "Compiler for the meteor-jade template language",
version: "0.4.1",
version: "0.4.2",
name: "mquandalle:jade-compiler",
git: "https://github.com/mquandalle/meteor-jade.git"
git: "https://github.com/mquandalle/meteor-jade.git",
documentation: "../../README.md"
});

Npm.depends({
Expand Down
15 changes: 8 additions & 7 deletions packages/jade/package.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
Package.describe({
summary: "Jade template language",
version: "0.4.1",
version: "0.4.2",
name: "mquandalle:jade",
git: "https://github.com/mquandalle/meteor-jade.git"
git: "https://github.com/mquandalle/meteor-jade.git",
documentation: "../../README.md"
});

Package.registerBuildPlugin({
name: "compileJade",
use: [
"underscore",
"htmljs",
"minifiers",
"spacebars-compiler",
"mquandalle:[email protected].1"
"underscore@1.0.0",
"htmljs@1.0.0",
"minifiers@1.0.0",
"spacebars-compiler@1.0.0",
"mquandalle:[email protected].2"
],
sources: [
"plugin/handler.js",
Expand Down

0 comments on commit 5b113e8

Please sign in to comment.