Skip to content

Commit e248cd5

Browse files
committed
Bump version to 1.3.
1 parent 2686d1a commit e248cd5

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

NEWS

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.3.0 (2015-09-08):
2+
- Added python 3 support.
3+
- Added an example of parsing ISO 8601.
4+
- Support rule arguments in parser protocols.
5+
16
1.2.0 (2013-08-01):
27
- Added 'makeProtocol' for parsing stream protocols using Parsley
38
grammars and Twisted, with examples, docs, and a tutorial.

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '1.2'
51+
version = '1.3'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '1.2'
53+
release = '1.3'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

parsley.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from terml.parser import parseTerm as term
66
from terml.quasiterm import quasiterm
77

8-
__version__ = '1.2'
8+
__version__ = '1.3'
99

1010

1111
def wrapGrammar(g, tracefunc=None):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from distutils.core import setup
88
setup(
99
name="Parsley",
10-
version="1.2",
10+
version="1.3",
1111
url="http://launchpad.net/parsley",
1212
description="Parsing and pattern matching made easy.",
1313
author="Allen Short",

0 commit comments

Comments
 (0)