Skip to content

Commit efccc19

Browse files
SimeonCSimeonC
authored andcommitted
chore(pre-release): Release pre-release 4.
Includes new Changelog format and added grunt-conventional-changelog. Must use correct commit format for these to show up though.
1 parent fb20887 commit efccc19

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

Gruntfile.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ module.exports = function (grunt) {
88
grunt.loadNpmTasks('grunt-istanbul-coverage');
99
grunt.loadNpmTasks('grunt-karma');
1010
grunt.loadNpmTasks('grunt-karma-coveralls');
11+
grunt.loadNpmTasks('grunt-conventional-changelog');
1112

1213
// Default task.
13-
grunt.registerTask('default', ['uglify', 'cssmin', 'clean', 'test']);
14-
grunt.registerTask('test', ['jshint', 'karma', 'coverage']);
14+
grunt.registerTask('default', ['uglify', 'cssmin', 'test']);
15+
grunt.registerTask('test', ['clean', 'jshint', 'karma', 'coverage']);
1516
grunt.registerTask('travis-test', ['jshint', 'karma', 'coverage', 'coveralls']);
1617

1718
var testConfig = function (configFile, customOptions) {
@@ -22,6 +23,7 @@ module.exports = function (grunt) {
2223

2324
// Project configuration.
2425
grunt.initConfig({
26+
changelog: {optios: {dest: 'changelog.md'}},
2527
clean: ["coverage"],
2628
coverage: {
2729
options: {
@@ -82,6 +84,7 @@ module.exports = function (grunt) {
8284
'dist/textAngular.min.css': ['src/textAngular.css']
8385
}
8486
}
85-
}
87+
},
88+
8689
});
8790
};

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "textAngular",
3-
"version": "1.3.0-pre3",
3+
"version": "1.3.0-pre4",
44
"main": ["./src/textAngular.js", "./src/textAngularSetup.js", "./src/textAngular.css"],
55
"description": "A radically powerful Text-Editor/Wysiwyg editor for Angular.js",
66
"keywords": [

changelog.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
###Changelog
1+
<a name="1.3.0-pre4"></a>
2+
### 1.3.0-pre4 (2014-10-06)
3+
4+
5+
#### Bug Fixes
6+
7+
* **taTools:** Fixes the wordcount to count correctly. ([fb208874](http://github.com/fraywing/textAngular/commit/fb208874a53abd2bea7c4f7fedd260dcee489141))
8+
9+
10+
<a name="1.3.0-pre3"></a>
11+
### 1.3.0-pre3 (2014-10-06)
12+
13+
14+
<a name="1.3.0-pre2"></a>
15+
### 1.3.0-pre2 (2014-10-06)
16+
17+
18+
<a name="1.3.0-pre1"></a>
19+
### 1.3.0-pre1 (2014-10-06)
20+
21+
22+
###OLD Changelog - PRE v1.3.0-pre1
223

324
2014-07-26 v1.2.2
425

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "textAngular",
33
"filename": "textAngular.min.js",
4-
"version": "1.3.0-pre3",
4+
"version": "1.3.0-pre4",
55
"description": "A radically powerful Text-Editor/Wysiwyg editor for Angular.js",
66
"maintainers": [
77
{
@@ -29,6 +29,7 @@
2929
"grunt-contrib-cssmin": "^0.10.0",
3030
"grunt-contrib-jshint": "^0.8.0",
3131
"grunt-contrib-uglify": "^0.2.7",
32+
"grunt-conventional-changelog": "^1.1.0",
3233
"grunt-istanbul-coverage": "~0.0.2",
3334
"grunt-karma": "^0.6.2",
3435
"grunt-karma-coveralls": "^2.5.0",

0 commit comments

Comments
 (0)