# HG changeset patch # User Matthew Wild # Date 1307110500 -3600 # Node ID 51b85d631863132db4ee50337eeeae6e2c6f2812 # Parent 4570d6616c99b5fc36318ab12d4598752b1f3189 Bump version in source, makefile, docs and README to 1.2.0 diff -r 4570d6616c99 -r 51b85d631863 README --- a/README Thu Jun 02 16:29:50 2011 +0100 +++ b/README Fri Jun 03 15:15:00 2011 +0100 @@ -8,7 +8,7 @@ Status -Current version is 1.1.1. It was developed for both Lua 5.0 and Lua 5.1, +Current version is 1.2.0. It was developed for both Lua 5.0 and Lua 5.1, and has been tested on Linux, Windows (2000/XP) and MacOS X with Expat 2.0.0. Download @@ -18,7 +18,7 @@ History -Version 1.1.1 [02/Jun/2011] +Version 1.2.0 [02/Jun/2011] * support for the StartDoctypeDecl handler * add parser:stop() to abort parsing inside a callback diff -r 4570d6616c99 -r 51b85d631863 doc/us/index.html --- a/doc/us/index.html Thu Jun 02 16:29:50 2011 +0100 +++ b/doc/us/index.html Fri Jun 03 15:15:00 2011 +0100 @@ -66,7 +66,7 @@

Status

-

Current version is 1.1.1. It was developed for both Lua 5.0 and Lua 5.1, and has been tested on +

Current version is 1.2.0. It was developed for both Lua 5.0 and Lua 5.1, and has been tested on Linux, Windows (2000/XP) and MacOS X with Expat 2.0.0.

Download

@@ -79,7 +79,7 @@

History

-
Version 1.1.1 [02/Jun/2011]
+
Version 1.2.0 [02/Jun/2011]
  • support for the StartDoctypeDecl handler
  • diff -r 4570d6616c99 -r 51b85d631863 makefile --- a/makefile Thu Jun 02 16:29:50 2011 +0100 +++ b/makefile Fri Jun 03 15:15:00 2011 +0100 @@ -1,5 +1,5 @@ T= lxp -V= 1.1.0 +V= 1.2.0 CONFIG= ./config include $(CONFIG) diff -r 4570d6616c99 -r 51b85d631863 src/lxplib.c --- a/src/lxplib.c Thu Jun 02 16:29:50 2011 +0100 +++ b/src/lxplib.c Fri Jun 03 15:15:00 2011 +0100 @@ -547,7 +547,7 @@ lua_pushliteral (L, "LuaExpat is a SAX XML parser based on the Expat library"); lua_settable (L, -3); lua_pushliteral (L, "_VERSION"); - lua_pushliteral (L, "LuaExpat 1.1.0"); + lua_pushliteral (L, "LuaExpat 1.2.0"); lua_settable (L, -3); }