Browse Source

Version bump for 0.5. Nicer commit message for release merges.

tags/v0.4.3
Ben Kurtovic 8 years ago
parent
commit
5cf13093ea
4 changed files with 14 additions and 2 deletions
  1. +4
    -0
      CHANGELOG
  2. +8
    -0
      docs/changelog.rst
  3. +1
    -1
      mwparserfromhell/__init__.py
  4. +1
    -1
      scripts/release.sh

+ 4
- 0
CHANGELOG View File

@@ -1,3 +1,7 @@
v0.5 (unreleased):

-

v0.4.2 (released July 30, 2015):

- Fixed setup script not including header files in releases.


+ 8
- 0
docs/changelog.rst View File

@@ -1,6 +1,14 @@
Changelog
=========

v0.5
----

Unreleased
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.4.2...develop>`__):

-

v0.4.2
------



+ 1
- 1
mwparserfromhell/__init__.py View File

@@ -29,7 +29,7 @@ outrageously powerful parser for `MediaWiki <http://mediawiki.org>`_ wikicode.
__author__ = "Ben Kurtovic"
__copyright__ = "Copyright (C) 2012, 2013, 2014, 2015 Ben Kurtovic"
__license__ = "MIT License"
__version__ = "0.4.2"
__version__ = "0.5.dev0"
__email__ = "ben.kurtovic@gmail.com"

from . import (compat, definitions, nodes, parser, smart_list, string_mixin,


+ 1
- 1
scripts/release.sh View File

@@ -65,7 +65,7 @@ do_git_stuff() {
git commit -qam "release/$VERSION"
git tag v$VERSION -s -m "version $VERSION"
git checkout -q master
git merge -q --no-ff develop -m "Merge branch 'develop'"
git merge -q --no-ff develop -m "Merge develop into master (release/$VERSION)"
echo -n " pushing..."
git push -q --tags origin master
git checkout -q develop


Loading…
Cancel
Save