Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit d0a5f3a

Browse files
committed
Merge pull request #264 from nostrademons/housekeeping
Assorted housekeeping tasks
2 parents efc8f4f + 889ab74 commit d0a5f3a

File tree

5 files changed

+41
-3
lines changed

5 files changed

+41
-3
lines changed

CHANGES.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Gumbo 0.9.2 (2014-09-21)
2+
3+
* Performance improvements: Ragel-based char ref decoder and DFA-based UTF8
4+
* decoder, totaling speedups of up to 300%.
5+
* Added benchmarking program and some sample data.
6+
* Fixed a compiler error under Visual Studio.
7+
* Fix an error in the ctypes bindings that could lead to memory corruption in
8+
* the Python bindings.
9+
* Fix duplicate attributes when parsing <isindex> tags.
10+
* Don't leave semicolons behind when consuming entity references (rgrove)
11+
* Internally rename some functions in preparation for an amalgamation file
12+
* (jdeng)
13+
* Add proper cflags for gyp builds (skabbes)
14+
15+
Gumbo 0.9.1 (2014-08-07)
16+
17+
* First version listed on PyPi.
18+
* Autotools files excluded from GitHub and generated via autogen.sh. (endgame)
19+
* Numerous compiler warnings fixed. (bnoordhuis, craigbarnes)
20+
* Google security audit passed.
21+
* Gyp support (tfarina)
22+
* Naming convention for structs changed to avoid C reserved words.
23+
* Fix several integer and buffer overflows (Maxime2)
24+
* Some Visual Studio compiler support (bugparty)
25+
* Python3 compatibility for the ctypes bindings.
26+
27+
Gumbo 0.9.0 (2013-08-13)
28+
29+
* Initial release open-sourced by Google.

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = "Gumbo"
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 0.9.1
35+
PROJECT_NUMBER = 0.9.2
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer

THANKS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@ Gumbo HTML parser THANKS file
33
Gumbo was originally written by Jonathan Tang, but many people helped out through suggestions, question-answering, code reviews, bugfixes, and organizational support. Here is a list of these people. Help me keep it complete and exempt of errors.
44

55
Adam Barth
6+
Ben Noordhuis
7+
Bowen Han
68
Constantinos Michael
9+
Craig Barnes
10+
Geoffrey Snedders
711
Ian Hickson
12+
Jack Deng
813
Jonathan Shneier
914
Mason Tang
15+
Maxim Zakharov
1016
Neal Norwitz
1117
Othar Hansson
18+
Ryan Grove
1219
Stefan Haustein
1320
Steffen Meschkat
21+
Steven Kabbes
22+
Thiago Farina

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.65])
5-
AC_INIT([gumbo], [1.0], [jdtang@google.com])
5+
AC_INIT([gumbo], [0.9.2], [jonathan.d.tang@gmail.com])
66
AC_CONFIG_MACRO_DIR([m4])
77
AC_CONFIG_SRCDIR([src/parser.c])
88
#AC_CONFIG_HEADERS([config.h])

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def run(self):
161161
]
162162

163163
setup(name='gumbo',
164-
version='0.9.1',
164+
version='0.9.2',
165165
description='Python bindings for Gumbo HTML parser',
166166
long_description=README,
167167
url='http://github.com/google/gumbo-parser',

0 commit comments

Comments
 (0)