Skip to content

Commit

Permalink
chore(release): release 0.3.2. See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
seriema committed Oct 25, 2015
1 parent e2dcbbb commit 3a588ab
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="0.3.2"></a>
## [0.3.2](https://github.com/seriema/angular-apimock/compare/0.3.1...v0.3.2) (2015-10-25)


### Bug Fixes

* **apimock:** timestamps had an invalid format ([024c8de](https://github.com/seriema/angular-apimock/commit/024c8de)), closes [#57](https://github.com/seriema/angular-apimock/issues/57)



<a name="0.3.1"></a>
## [0.3.1](https://github.com/seriema/angular-apimock/compare/v0.3.0...v0.3.1) (2015-10-18)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-apimock",
"version": "0.3.1",
"version": "0.3.2",
"main": "dist/angular-apimock.min.js",
"appPath": "app",
"ignore": [
Expand Down
6 changes: 3 additions & 3 deletions dist/angular-apimock.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Angular API Mock v0.3.1
/*! Angular API Mock v0.3.2
* Licensed with MIT
* Made with ♥ from Seriema + Redhorn */
/* Create the main module, `apiMock`. It's the one that needs to be included in
Expand Down Expand Up @@ -87,8 +87,8 @@ angular.module('apiMock', [])
'-' + pad(date.getUTCMonth() + 1) +
'-' + pad(date.getUTCDate()) +
'T' + pad(date.getUTCHours()) +
':' + pad(date.getUTCMinutes()) +
':' + pad(date.getUTCSeconds()) +
'.' + pad(date.getUTCMinutes()) +
'.' + pad(date.getUTCSeconds()) +
'.' + (date.getUTCMilliseconds() / 1000).toFixed(3).slice(2, 5) +
'Z';
}
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-apimock.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added nuget/Angular-ApiMock.0.3.2.nupkg
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-apimock",
"version": "0.3.1",
"version": "0.3.2",
"author": "John-Philip Johansson <seriema@gmail.com> (http://johansson.jp/)",
"homepage": "http://johansson.jp/angular-apimock/",
"bugs": "https://github.com/seriema/angular-apimock/issues",
Expand Down

0 comments on commit 3a588ab

Please sign in to comment.