version bump

This commit is contained in:
Tyler Kellen 2013-02-17 21:40:13 -05:00
parent ae4203471b
commit afb4a64142
8 changed files with 88 additions and 4 deletions

View File

@ -5,4 +5,3 @@
.gitattributes .gitattributes
test test
docs docs
Gruntfile.js

View File

@ -1,3 +1,7 @@
v0.3.2:
date: 2013-02-17
changes:
- Ensure Gruntfile.js is included on npm.
v0.3.1: v0.3.1:
date: 2013-02-15 date: 2013-02-15
changes: changes:

View File

@ -199,6 +199,7 @@ for more information on the RequireJS template.
## Release History ## Release History
* 2013-02-16v0.3.2Ensure Gruntfile.js is included on npm.
* 2013-02-14v0.3.1First official release for Grunt 0.4.0. * 2013-02-14v0.3.1First official release for Grunt 0.4.0.
* 2013-01-21v0.3.1rc7Exposed phantom and sendMessage to templates * 2013-01-21v0.3.1rc7Exposed phantom and sendMessage to templates
* 2013-01-21v0.3.0rc7Updated dependencies for grunt v0.4.0rc6/rc7 * 2013-01-21v0.3.0rc7Updated dependencies for grunt v0.4.0rc6/rc7
@ -212,4 +213,4 @@ for more information on the RequireJS template.
Task submitted by [Jarrod Overson](http://jarrodoverson.com) Task submitted by [Jarrod Overson](http://jarrodoverson.com)
*This file was generated on Fri Feb 15 2013 18:53:30.* *This file was generated on Sun Feb 17 2013 21:40:03.*

16
junit/TEST-Player.xml Normal file
View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" ?>
<testsuites>
<testsuite name="Player" errors="0" tests="2" failures="0" time="0.012" timestamp="2013-02-18T02:40:02.174Z">
<testcase assertions="2" classname="Player" name="should be able to play a Song" time="0.005">
</testcase>
<testcase assertions="1" classname="Player" name="tells the current song if the user has made it a favorite" time="0.001">
</testcase>
</testsuite>
</testsuites>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" ?>
<testsuites>
<testsuite name="Player #resume" errors="0" tests="1" failures="0" time="0.001" timestamp="2013-02-18T02:40:02.173Z">
<testcase assertions="1" classname="Player #resume" name="should throw an exception if song is already playing" time="0.001">
</testcase>
</testsuite>
</testsuites>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" ?>
<testsuites>
<testsuite name="Player when song has been paused" errors="0" tests="2" failures="0" time="0.002" timestamp="2013-02-18T02:40:02.170Z">
<testcase assertions="2" classname="Player when song has been paused" name="should indicate that the song is currently paused" time="0.001">
</testcase>
<testcase assertions="2" classname="Player when song has been paused" name="should be possible to resume" time="0.001">
</testcase>
</testsuite>
</testsuites>

View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8" ?>
<testsuites>
<testsuite name="Player" errors="0" tests="2" failures="0" time="0.011" timestamp="2013-02-18T02:40:03.603Z">
<testcase assertions="2" classname="Player" name="should be able to play a Song" time="0.005">
</testcase>
<testcase assertions="1" classname="Player" name="tells the current song if the user has made it a favorite" time="0.001">
</testcase>
</testsuite>
<testsuite name="Player when song has been paused" errors="0" tests="2" failures="0" time="0.002" timestamp="2013-02-18T02:40:03.600Z">
<testcase assertions="2" classname="Player when song has been paused" name="should indicate that the song is currently paused" time="0.001">
</testcase>
<testcase assertions="2" classname="Player when song has been paused" name="should be possible to resume" time="0">
</testcase>
</testsuite>
<testsuite name="Player #resume" errors="0" tests="1" failures="0" time="0" timestamp="2013-02-18T02:40:03.602Z">
<testcase assertions="1" classname="Player #resume" name="should throw an exception if song is already playing" time="0">
</testcase>
</testsuite>
</testsuites>

View File

@ -1,7 +1,7 @@
{ {
"name": "grunt-contrib-jasmine", "name": "grunt-contrib-jasmine",
"description": "Run jasmine specs headlessly through PhantomJS.", "description": "Run jasmine specs headlessly through PhantomJS.",
"version": "0.3.1", "version": "0.3.2",
"homepage": "https://github.com/gruntjs/grunt-contrib-jasmine", "homepage": "https://github.com/gruntjs/grunt-contrib-jasmine",
"author": { "author": {
"name": "Grunt Team", "name": "Grunt Team",