From 3ffc13bfd47edb2b96425f05e45d7c8a29cea126 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 23 Jun 2017 04:31:18 -0400 Subject: [PATCH] release/0.5 --- CHANGELOG | 2 +- appveyor.yml | 2 +- docs/changelog.rst | 4 ++-- mwparserfromhell/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b52a70f..bdcf906 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -v0.5 (unreleased): +v0.5 (released June 23, 2017): - Added Wikicode.contains() to determine whether a Node or Wikicode object is contained within another Wikicode object. diff --git a/appveyor.yml b/appveyor.yml index afe1450..ff2ef4a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ # This config file is used by appveyor.com to build Windows release binaries -version: 0.5.dev0-b{build} +version: 0.5-b{build} branches: only: diff --git a/docs/changelog.rst b/docs/changelog.rst index b02437f..cf4e31a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,8 +4,8 @@ Changelog v0.5 ---- -Unreleased -(`changes `__): +`Released June 23, 2017 `_ +(`changes `__): - Added :meth:`.Wikicode.contains` to determine whether a :class:`.Node` or :class:`.Wikicode` object is contained within another :class:`.Wikicode` diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index 64f3681..17f9e97 100644 --- a/mwparserfromhell/__init__.py +++ b/mwparserfromhell/__init__.py @@ -29,7 +29,7 @@ outrageously powerful parser for `MediaWiki `_ wikicode. __author__ = "Ben Kurtovic" __copyright__ = "Copyright (C) 2012, 2013, 2014, 2015, 2016 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.5.dev0" +__version__ = "0.5" __email__ = "ben.kurtovic@gmail.com" from . import (compat, definitions, nodes, parser, smart_list, string_mixin,