Skip to content

Commit 58caacd

Browse files
committed
chore(changelog): upgrade package and config
1 parent fdd5de6 commit 58caacd

File tree

3 files changed

+44
-4
lines changed

3 files changed

+44
-4
lines changed

Diff for: CHANGELOG.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
# Unreleased
1+
<a name="Unreleased"></a>
2+
# Unreleased (2017-01-05)
3+
4+
* test(coverage): add coverage and coveralls.io integration ([fdd5de6](https://github.com/mgonto/restangular/commit/fdd5de6))
5+
* chore(docs) Add new example production site ([2596035](https://github.com/mgonto/restangular/commit/2596035))
6+
* chore(docs) Add note about pull requests and github preview tab ([6883075](https://github.com/mgonto/restangular/commit/6883075))
7+
* chore(docs) Apply automatic formatting to code and spec ([bc16122](https://github.com/mgonto/restangular/commit/bc16122))
8+
* chore(docs) Reformat changelog, add unreleased section ([8bfa685](https://github.com/mgonto/restangular/commit/8bfa685))
9+
* chore(docs) Update issue guidelines to include StackOverflow as source for solutions to problems ([34b0e9a](https://github.com/mgonto/restangular/commit/34b0e9a))
10+
* chore(docs) Update link to demo Plunker, rephrase ([7c30615](https://github.com/mgonto/restangular/commit/7c30615))
11+
* chore(test) fix jshint errors in spec file ([1a988cb](https://github.com/mgonto/restangular/commit/1a988cb))
12+
* feat(docs) Add FAQ about cancelling request ([8552c51](https://github.com/mgonto/restangular/commit/8552c51)), closes [#926](https://github.com/mgonto/restangular/issues/926) [#1145](https://github.com/mgonto/restangular/issues/1145) [#1377](https://github.com/mgonto/restangular/issues/1377) [#1391](https://github.com/mgonto/restangular/issues/1391)
13+
* fix(copy) Collections are now copied/cloned properly ([c92b138](https://github.com/mgonto/restangular/commit/c92b138))
14+
* fix(copy) Copying collections now correctly sets route, fromServer and parent on the copy ([7fd668b](https://github.com/mgonto/restangular/commit/7fd668b))
15+
* fix(elementTransformer) matchTransformer now doesn't throw if route is undefined ([fb242ae](https://github.com/mgonto/restangular/commit/fb242ae))
16+
* Update dist files ([7c245a2](https://github.com/mgonto/restangular/commit/7c245a2))
17+
* chore(dependencies): Update lodash version to ~4.17.0 as in unit tests ([e0b68a0](https://github.com/mgonto/restangular/commit/e0b68a0))
18+
19+
20+
221

322

423
# 1.6.0 (2016-12-25)

Diff for: Gruntfile.js

+23-2
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,28 @@ module.exports = function(grunt) {
102102
}
103103
},
104104
},
105-
changelog: {
105+
conventionalChangelog: {
106106
options: {
107-
dest: 'CHANGELOG.md'
107+
changelogOpts: {
108+
// conventional-changelog options go here
109+
outputUnreleased: true,
110+
// preset: 'angular'
111+
},
112+
context: {
113+
// context goes here
114+
},
115+
gitRawCommitsOpts: {
116+
// git-raw-commits options go here
117+
},
118+
parserOpts: {
119+
// conventional-commits-parser options go here
120+
},
121+
writerOpts: {
122+
// conventional-changelog-writer options go here
123+
}
124+
},
125+
release: {
126+
src: 'CHANGELOG.md'
108127
}
109128
}
110129
});
@@ -143,6 +162,8 @@ module.exports = function(grunt) {
143162

144163
grunt.registerTask('travis', ['karma:travis', 'karma:travisUnderscore']);
145164

165+
grunt.registerTask('changelog', ['conventionalChangelog']);
166+
146167
// Provides the "bump" task.
147168
grunt.registerTask('bump', 'Increment version number', function() {
148169
var versionType = grunt.option('type');

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"grunt-contrib-concat": "*",
4444
"grunt-contrib-jshint": "*",
4545
"grunt-contrib-uglify": "*",
46-
"grunt-conventional-changelog": "0.0.12",
46+
"grunt-conventional-changelog": "latest",
4747
"grunt-coveralls": "^1.0.1",
4848
"grunt-karma": "latest",
4949
"grunt-zip": "*",

0 commit comments

Comments
 (0)