Skip to content

Commit

Permalink
Prepare for 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
guylabs committed Mar 21, 2015
1 parent 5abd4e9 commit 44d5cf5
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014 Guy Brand
Copyright (c) 2014 - 2015 Guy Brand

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
13 changes: 13 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Release notes of angular-spring-data-rest

## Version 0.4.0

* Tag: [0.4.0](https://github.com/guylabs/angular-spring-data-rest/tree/0.4.0)
* 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)

### Changes

* 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.

### Migration notes

* 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.

## Version 0.3.2

* Tag: [0.3.2](https://github.com/guylabs/angular-spring-data-rest/tree/0.3.2)
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-spring-data-rest",
"version": "0.3.2",
"version": "0.4.0",
"description": "An AngularJS module to ease the work with a Spring Data REST backend.",
"main": "./dist/angular-spring-data-rest.js",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions dist/angular-spring-data-rest.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

/**
* @module spring-data-rest
* @version 0.3.2
* @version 0.4.0
*
* An AngularJS module to ease the work with a Spring Data REST backend.
*/
angular.module("spring-data-rest", ["ngResource"]);

/**
* @module spring-data-rest
* @version 0.3.2
* @version 0.4.0
*
* Provider for the SpringDataRestAdapter which is the core of this module.
*/
Expand Down Expand Up @@ -333,7 +333,7 @@ angular.module("spring-data-rest").provider("SpringDataRestAdapter", function ()
});
/**
* @module spring-data-rest
* @version 0.3.2
* @version 0.4.0
*
* Provider for the interceptor which wraps the SpringDataRestAdapter around the response object.
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/angular-spring-data-rest.min.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* angular-spring-data-rest 0.3.2
* angular-spring-data-rest 0.4.0
* Copyright 2015 Guy Brand (@guy_labs)
* https://github.com/guylabs/angular-spring-data-rest
*/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-spring-data-rest",
"version": "0.3.2",
"version": "0.4.0",
"description": "An AngularJS module to ease the work with a Spring Data REST backend.",
"keywords": [
"AngularJS",
Expand Down

0 comments on commit 44d5cf5

Please sign in to comment.