diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ccc588df..c623ec2ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 3.0.0 +# 3.0.0 - *2013-04-07* **Major rewrite of 4chan X.** diff --git a/Gruntfile.js b/Gruntfile.js index 4fee1fb2e..f08c0bea6 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -166,8 +166,8 @@ module.exports = function(grunt) { // Update the `pkg` object with the new version. pkg = grunt.file.readJSON('package.json'); // i is the number of #s for markdown. - var version = new Array(+i + 1).join('#') + ' ' + pkg.version + ' *(' + grunt.template.today('yyyy-mm-dd') + ')*'; - grunt.file.write('CHANGELOG.md', version + '\n' + grunt.file.read('CHANGELOG.md')); + var version = new Array(+i + 1).join('#') + ' ' + pkg.version + ' - *' + grunt.template.today('yyyy-mm-dd') + '*'; + grunt.file.write('CHANGELOG.md', version + '\n\n' + grunt.file.read('CHANGELOG.md')); grunt.log.ok('Changelog updated for v' + pkg.version + '.'); }); diff --git a/package.json b/package.json index 56234377a..7196c6890 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "3.0.0", "description": "Cross-browser extension for productive lurking on 4chan.", "meta": { - "name": "4chan X Beta", + "name": "4chan X", "repo": "https://github.com/MayhemYDG/4chan-x/", "page": "https://4chan-x.just-believe.in/", "buildsPath": "builds/",