diff --git a/README.md b/README.md index 62d1628d..f4d9e588 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ afch-rewrite [![Build Status](https://travis-ci.org/WPAFC/afch-rewrite.png)](https://travis-ci.org/WPAFC/afch-rewrite) ============ -**v0.6 Dancing Turtle** +**v0.7 Less is More** A tool for reviewing Articles for Creation submissions on the English Wikipedia, rewritten using clear, object-oriented JavaScript with a focus on killing bloat while adding value. @@ -26,6 +26,9 @@ To upload the script to a wiki, use `scripts/upload.py`. Detailed instructions a ### Version history +* 0.7 Less is More (13 April 2014) +* 0.7 Less is More (13 April 2014) +* 0.7 Less is More (13 April 2014) * 0.6 Dancing Turtle (27 March 2014) * 0.5 Cold Moose (21 March 2014) * 0.4 Rewired Robot (14 March 2014) diff --git a/package.json b/package.json index 1cdcf6b0..6b3c0c2b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "afch-rewrite", - "version": "0.6.0", + "version": "0.7.0", "homepage": "https://github.com/WPAFC/afch-rewrite", "repository": { "type": "git", diff --git a/scripts/release.py b/scripts/release.py index ca74c941..21f03f7b 100644 --- a/scripts/release.py +++ b/scripts/release.py @@ -80,11 +80,12 @@ def full_version(version): r'"version": ".*?",','"version": "{}",'.format(full_version(version))) # Commit the release -execute_command('git add . && git commit -m "v{}"'.format(version)) +execute_command('git add .') +execute_command('git commit -m "v{}"'.format(version)) # Tag the new version execute_command('git tag v{}'.format(version)) # Push to master -execute_command('git push origin') -execute_command('git push origin --tags') +execute_command('git push origin master') +execute_command('git push origin master --tags') diff --git a/src/afch.js b/src/afch.js index 7ef8283f..2138033e 100644 --- a/src/afch.js +++ b/src/afch.js @@ -24,8 +24,8 @@ AFCH.consts = {}; // Master version data - AFCH.consts.version = 0.6; - AFCH.consts.versionName = 'Dancing Turtle'; + AFCH.consts.version = 0.7; + AFCH.consts.versionName = 'Less is More'; // FIXME: Change when moving into production AFCH.consts.beta = true;