Skip to content

Commit

Permalink
"v0.7"
Browse files Browse the repository at this point in the history
  • Loading branch information
theopolisme committed Apr 14, 2014
1 parent 3d214df commit 6a3a158
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 4 additions & 3 deletions scripts/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
4 changes: 2 additions & 2 deletions src/afch.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6a3a158

Please sign in to comment.