Skip to content

Commit

Permalink
Bumped version and added changelog entry.
Browse files Browse the repository at this point in the history
  • Loading branch information
atufkas committed Oct 30, 2015
1 parent 13db2e6 commit a42ebfa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# angular-openweather-app - Release Log

## 0.1.6 (October 30, 2015)

- fix: openweathermap api needs query parameter APPID (x-api-key not sufficient any more)
- minor: corrected some meta package descriptions

## 0.1.5 (August 25, 2015)

- fix: openweathermap api 2.5 doesn't recognize query param/value "mode=jsonp" any more (returned status 400)
Expand Down
2 changes: 1 addition & 1 deletion app/js/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ angular.module('openWeatherApp.services', ['ngResource'])
//
// Simple value service (kept from angular-seed dist)
//
.value('version', '0.1.5')
.value('version', '0.1.6')


//
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-openweather-app",
"version": "0.1.5",
"version": "0.1.6",
"authors": [
"Matthias Lienau <matthias@mlienau.de>"
],
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-openweather-app",
"description": "A weather forecast app written in AngularJS based on openweathermap",
"version": "0.1.5",
"description": "A weather forecast app written in AngularJS based on OpenWeatherMap API calls",
"version": "0.1.6",
"author": {
"name": "Matthias Lienau",
"email": "matthias@mlienau.de"
Expand Down
2 changes: 1 addition & 1 deletion test/unit/servicesSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('service', function() {

describe('version', function() {
it('should return current version', inject(function(version) {
expect(version).toEqual('0.1.5');
expect(version).toEqual('0.1.6');
}));
});

Expand Down

0 comments on commit a42ebfa

Please sign in to comment.