Skip to content

Commit 44d5cf5

Browse files
author
guylabs
committed
Prepare for 0.4.0 release
1 parent 5abd4e9 commit 44d5cf5

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 Guy Brand
3+
Copyright (c) 2014 - 2015 Guy Brand
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

RELEASENOTES.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Release notes of angular-spring-data-rest
22

3+
## Version 0.4.0
4+
5+
* Tag: [0.4.0](https://github.com/guylabs/angular-spring-data-rest/tree/0.4.0)
6+
* Release: [angular-spring-data-rest-0.4.0.zip](https://github.com/guylabs/angular-spring-data-rest/releases/download/0.4.0/angular-spring-data-rest-0.4.0.zip)
7+
8+
### Changes
9+
10+
* Fixed issues with incorrect promise handling and simplified the code. Now the `process` function accepts promises and also returns promises. So there is no possibility to process data without using promises.
11+
12+
### Migration notes
13+
14+
* You will need to change all invocations of the `processWithPromise` function to the `process` function. Further you need to ensure that when you used the old `process` function that you now get a promise returned instead of the processed data directly.
15+
316
## Version 0.3.2
417

518
* Tag: [0.3.2](https://github.com/guylabs/angular-spring-data-rest/tree/0.3.2)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-spring-data-rest",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"description": "An AngularJS module to ease the work with a Spring Data REST backend.",
55
"main": "./dist/angular-spring-data-rest.js",
66
"license": "MIT",

dist/angular-spring-data-rest.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
/**
66
* @module spring-data-rest
7-
* @version 0.3.2
7+
* @version 0.4.0
88
*
99
* An AngularJS module to ease the work with a Spring Data REST backend.
1010
*/
1111
angular.module("spring-data-rest", ["ngResource"]);
1212

1313
/**
1414
* @module spring-data-rest
15-
* @version 0.3.2
15+
* @version 0.4.0
1616
*
1717
* Provider for the SpringDataRestAdapter which is the core of this module.
1818
*/
@@ -333,7 +333,7 @@ angular.module("spring-data-rest").provider("SpringDataRestAdapter", function ()
333333
});
334334
/**
335335
* @module spring-data-rest
336-
* @version 0.3.2
336+
* @version 0.4.0
337337
*
338338
* Provider for the interceptor which wraps the SpringDataRestAdapter around the response object.
339339
*/

dist/angular-spring-data-rest.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* angular-spring-data-rest 0.3.2
2+
* angular-spring-data-rest 0.4.0
33
* Copyright 2015 Guy Brand (@guy_labs)
44
* https://github.com/guylabs/angular-spring-data-rest
55
*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-spring-data-rest",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"description": "An AngularJS module to ease the work with a Spring Data REST backend.",
55
"keywords": [
66
"AngularJS",

0 commit comments

Comments
 (0)