diff --git a/README.md b/README.md index 5642071..2215dac 100644 --- a/README.md +++ b/README.md @@ -59,3 +59,19 @@ this.xmlrpc.setHeaders({ }) ``` - _Note_: this method returns an instance of [HttpHeaders](https://angular.io/api/common/http/HttpHeaders) that will be used in the Angular HTTP request + + +## Build & Test (Developers) + +To build the project create an angular workspace (or use an existing one). For example: + + ng new ng-workspace --create-application false + +Create the library project: + + ng generate library angular2-xmlrpc + +fetch this repo from inside the project folder and buid it as library module from angular: + + ng build angular2-xmlrpc + ng test angular2-xmlrpc \ No newline at end of file diff --git a/changelog.txt b/changelog.txt index 81dea44..b37ea30 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +v1.0.5 +------ +- Fix: array responses are broken (for structs) + v1.0.4 ------ - Fix: bug when passing 0 as a parameter -> is treated as null diff --git a/package.json b/package.json index 81bf627..77ca9a1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "angular2-xmlrpc", "description": "An Angular service which provides XML-RPC communication methods", - "version": "1.0.4", + "version": "1.0.5", "author": "Francesco Gabbrielli", "license": "ISC", "homepage": "https://github.com/francescogabbrielli/angular2-xmlrpc",