Add arm atomic operations
[platform/upstream/glib.git] / NEWS
1 Overview of Changes from GLib 2.13.7 to GLib 2.14.0
2 ===================================================
3
4 * Last-minute API additions:
5  - Make g_unichar_combining_class public
6  - Add goffset type, add G_MAXSSIZE and G_MINSSIZE
7
8 * Update PCRE to 7.2
9
10 * Bugs fixed:
11  453998 Make _g_unichar_combining_class() public
12  462549 gregex.c: variable is declared at middle of block
13  417068 g_file_test doc inconsistency
14
15 * Updated translations:
16  Assamese (as)
17  Basque (eu)
18  Kannada (kn)
19  Malayalam (ml)
20  Dutch (nl)
21  Polish (pl)
22  Brazilian Portugese (pt_BR)
23  Turkish (tr)
24
25
26 Overview of Changes from GLib 2.13.6 to GLib 2.13.7
27 ===================================================
28
29 * The memory corruption warning from the slice allocator that
30   occurred when threads were initialized after the slice allocator
31   has been removed, as the slice allocator now works fine
32   in this scenario.
33
34 * New functions g_once_init_enter() and g_once_init_leave() make
35   it easier to write threadsafe one-time initialization functions 
36  
37 * Bugs fixed:
38  454473 Simple XML Subset Parser terminates on invalid XML
39  445813 g_module_open error, add file name
40  453796 errno gets clobbered by g_filename_display_name
41  341988 don't use "-c" with msgfmt in Makefile.in.in
42  447048 Please produce slightly more output during long tests
43  454785 GModule documentation lists same block of code twice.
44  454786 GModule documentation lists same paragraph twice.
45  383155 small docs quirks in gobject/closure API documentation
46  65041  _get_type() functions aren't thread safe
47
48 * Updated translations
49  Assamese (as)
50  Spanish (es)
51  Gujarati (gu)
52  Japanese (ja)
53  Korean (ko)
54  Macedonian (mk)
55
56
57 Overview of Changes from GLib 2.13.5 to GLib 2.13.6
58 ===================================================
59
60 * Reintroduce a GType typedef whose removal in 2.13.5
61   caused trouble for C++ bindings
62
63 * Bugs fixed:
64  450216 docs not explicit enough about g_free()
65  451459 g_type_register_static_simple calls g_type_register_static
66
67 * Updated translations
68  Norwegian bokmål (nb)
69  Sinhala (si)
70
71
72 Overview of Changes from GLib 2.13.4 to GLib 2.13.5
73 ===================================================
74
75 * xdg-user-dirs support: 
76  - the Desktop directory is guaranteed to be defined
77  - user-dirs.dirs is no longer reloaded on changes
78
79 * Slice allocator: 
80  - new api to duplicate slices
81
82 * Regular expression support:
83  - GRegex is a boxed type now
84
85 * Bugs fixed:
86  44793 make check failing in trunk
87  354522 Small problem with PLT hiding 6 symbols
88  363986 glib 2.12.4 does not compile with SGI IDO cc
89  443869 g_type_class_add_private doesn't warn when adding 0-sized...
90  446859 Legitimately return 0 for g_quark_from_string(NULL)
91  447534 Small typo in g_timeout_add_seconds() doc
92  447583 GStaticRWLock
93  447935 g_get_current_dir SIGSEGV on long path
94  448260 CLAMP has surprising result if low > high
95  57693  g_string_vprintf()
96  442029 add g_slice_dup()
97  445065 Add GRegex boxed type
98  448819 Add full version of g_timeout_add_seconds()
99
100 * Updated translations: 
101  Swedish (sv)
102  Oriya (or)
103  Hebrew (he)
104  Spanish (es)
105  Estonian (et)
106
107  
108 Overview of Changes from GLib 2.13.3 to GLib 2.13.4
109 ===================================================
110
111 * Bugs fixed:
112  444121 g_get_user_special_dir deadlocks
113  444161 invalid UTF8 in key name shows up as valgrind error in g_...
114  444130 g_option_context_get_help() is broken when there's a desc...
115
116
117 Overview of Changes from GLib 2.13.2 to GLib 2.13.3
118 ===================================================
119
120 * GKeyFile:
121  - Added defines for easier handling of desktop files
122
123 * Unicode support:
124  - Update g_unichar_iswide_cjk for Unicode 5.0
125
126 * Regular expression support:
127  - GRegex structs can now be ref-counted
128  - Some new functions for dealing with incremental 
129    replacement have been added
130  - The GRegexEvalCallback signature has been changed
131
132 * g_get_user_special_dir() has been added to support
133   xdg-user-dirs
134
135 * Bugs fixed:
136  419376 Functions using named subpatterns behave inconsistently w...
137  434358 g_regex_fetch_named() and g_regex_fetch_named_pos() are b...
138  423708 typo in the README.win32 file see patch below
139  339225 Add new defines for easier handling of .desktop files 
140  442265 API additions/changes for GRegex
141  432651 Add a glib-ish xdg_user_dir_lookup
142
143 * Updated translations:
144  Estonian (et)
145  Norwegian bokmål (nb)
146
147
148 Overview of Changes from GLib 2.13.1 to GLib 2.13.2
149 ===================================================
150
151 * Unicode support:
152  - Add g_unichar_ismark()
153
154 * GOption:
155  - Allow to use callbacks for remaining args
156
157 * Updated translations:
158   Belarusian Latin (be@latin)
159   British English (en_GB)
160   Galician (gl)
161   Norwegian bokmål (nb)
162   Oriya (or)
163   Spanish (es)
164   Thai (th)
165
166
167 Overview of Changes from GLib 2.13.0 to GLib 2.13.1
168 ===================================================
169
170 * GRegex:
171  - Portability fixes
172  - Split into immutable GRegex and GMatchInfo
173  - Add g_regex_get_max_backref() and g_regex_get_capture_count()
174    to obtain information about the compiled regex
175
176 * GKeyFile:
177  - Fix roundtrip problems
178  - Add g_key_file_load_from_dirs()
179
180 * Unicode support:
181  - Fix corner cases in case conversion routines
182
183 * GOption:
184   - Add a function to get the formatted help string
185
186 * GHash:
187  - Add new functions g_hash_table_get_keys() and
188    g_hash_table_get_values() to retrieve the keys and
189    values in list form
190
191 * Updated transations:
192   Simplified Chinese (zh_CN)
193   Arabic (ar)
194
195
196 Overview of Changes from GLib 2.12 to GLib 2.13.0
197 =================================================
198
199 * Add GSequence, a list that is implemented using
200   a balanced binary tree.
201
202 * Add GRegex, an implementation of Perl regular expressions,
203   based on PCRE.
204  
205 * Use Posix monotonic clocks instead of gettimeofday()
206   for GTimer when available.
207
208 * Support static initialization of GQeues with G_QUEUE_INIT,
209   g_queue_init() and g_queue_clear().
210
211 * Add g_string_chunk_clear() for clearing a 
212   GStringChunk.
213
214 * Add g_unichar_get_script() to obtain Unicode
215   script information.
216
217 * Add g_unichar_iszerowidth() to obtain information
218   about zero-width characters.
219
220 * Add G_GNUC_MAY_ALIAS which wraps the gcc may_alias 
221   type attribute.
222
223 * G_GNUC_INTERNAL has a working definition for the
224   Sun Studio compiler. This requires the macro to
225   be positioned before the function declaration.
226
227 * The slice allocator can produce detailed debugging
228   information with G_SLICE=debug-blocks.
229
230 * Modules support G_DEBUG flags resident-modules and
231   bind-now-modules.
232
233 * Add G_DEFINE_DYNAMIC_TYPE() to make it easier
234   to define types in modules.
235
236 * Bug fixes: too many to list them in detail here.
237
238 * New and updated translations (be,bg,bn,ca,cs,de,
239   en_CA,en_GB,et,fa,fr,he,hu,it,ja,ku,lt,mg,mk,ml,
240   nb,ne,nn,pt,pt_BR,ro,sr,sr@Latn,sv,ta,uk,vi,zh_CN,
241   zh_HK,zh_TW)
242
243
244 Overview of Changes from GLib 2.12.1 to GLib 2.12.2
245 ===================================================
246
247 * Unicode updates:
248  - Normalization is following Unicode TR #29
249  - g_unichar_isxdigit() only accept characters
250    for which g_unichar_xdigit_value() returns a value
251  - g_unichar_toupper and g_unichar_tolower leave
252    unconvertable characters in place instead of
253    replacing them by NUL
254
255 * Bugs fixed
256  348491 g_utf8_strup() and g_utf8_strdown() returns 
257         string with NUL bytes
258  349825 GKeyFile always inserts a newline before a group
259  347842 g_unichar_isxdigit() is too general about what 
260         it considers a digit
261  348694 g_utf8_normalize() hasn't been updated to PR #29
262  348785 Hint about G_DEBUG in Message Logging docs
263  349792 Wrong english string (UI)
264  349952 gparamspecs.c uses gcc feature
265
266 * Translation updates (ca,cs,de,dz,es,eu,fi,gu,ko,
267   nl,pl,tr,uk,zh_HK,zh_TW)
268
269
270 Overview of Changes from GLib 2.12.0 to GLib 2.12.1
271 ===================================================
272
273 * Update to final Unicode Character Database 5.0.0
274
275 * Bugs fixed:
276  346660 issues with base64 api documentation / g_base64_decode_cl...
277  348136 Coverity reports allocation of wrong size CID #2839
278  336281 Update to UCD 5.0
279  346197 g_date_strftime %F option doesnt work for win32
280  348011 Small optimization to real_toupper()
281  246494 prototype mismatch in glib/gconvert.c
282
283 * New and updated translations (bg,bn_IN,ca,dz,eu,fi,
284   fr,he,it,ja,mk,or,pt)
285
286
287 Overview of Changes from GLib 2.11.4 to GLib 2.12
288 =================================================
289
290 * Bugs fixed:
291  344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM
292
293 * Updated translations (cy,nb,nl)
294
295
296 Overview of Changes from GLib 2.11.3 to GLib 2.11.4
297 ===================================================
298
299 * GBookmarkFile:
300  - g_bookmark_file_remove_item returns a boolean
301  
302 * g_mkstemp accepts the XXXXXX in the middle of
303   the template
304  
305 * Bugs fixed:
306  344868 g_key_file_to_data should separate groups 
307
308 * Updated translations (de,es,fr,gu,hi,ko,th)
309
310
311 Overview of Changes from GLib 2.11.2 to GLib 2.11.3
312 ===================================================
313
314 * GBookmarkFile:
315   - g_bookmark_file_move_item: Return TRUE in case of
316     an empty target
317
318 * Bugs fixed: 
319  343919 gunicollate.c: strxfrm bug on VC8
320
321 * Updated translations (fi)
322
323 Overview of Changes from GLib 2.11.1 to GLib 2.11.2
324 ===================================================
325
326 * Add g_ascii_stroll to parse signed 64bit integers
327
328 * GMarkup: add a flag to treat CDATA as text
329
330 * GHashTable: add functions to remove all entries
331
332 * GMainLoop: add functions to find the currently
333   running source, and determine if it is destroyed
334
335 * Bug fixes:
336  342563  g_atomic_thread_init() needs to be called before 
337          other _g_*_thread_init() functions
338  343548  Potential use after free in callers of g_string_free() 
339  168538  Wish: Clearing contents of GHashTables
340  321886  GTK+ cannot be reliably used in multi-threaded 
341          applications
342  341826  goption.c: 'strtoll' is C99's function
343  343899  g_ascii_formatd dosn't work as expected for all 
344          format strings
345  317793  Make GEnumValue strings const
346  337129  Compile warnings in G_IMPLEMENT_INTERFACE
347  303622  What is G_TYPE_CHAR?
348
349 * Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi)
350  
351
352 Overview of Changes from GLib 2.11.0 to GLib 2.11.1
353 ===================================================
354
355 * GOption  
356   - Support 64-bit integers 
357   - Allow optional text before and after the options
358     in help output
359
360 * Bug fixes:
361  340538 gbase64-test writes OOB 
362  340816 GKeyFile set_string_list invalid memory reads 
363  339105 g_key_file_parse_value_as_double
364  340434 convert-test.c fails (function test_one_half)
365  311043 Memory leaks (and potential infinite loops) 
366         when using G_ERRORCHECK_MUTEXES
367  335198 Error checking mutexes are fubar  
368  341237 Add a G_OPTION_ARG_INT64
369  341192 g_io_channel_set_flags not implemented on win32
370  336120 Allow adding description before/after GOption 
371         --help output body
372  341191 misplaced check in g_relation_delete
373  340530 mismatched calloc / g_free in win32 threads
374
375 * Updated translation (es)
376
377 Overview of Changes from GLib 2.10.x to GLib 2.11.0
378 ===================================================
379
380 * GBookmarkFile: a parser for files containing bookmarks
381   stored using the Desktop Bookmark specification.
382
383 * Base64 encoding support
384         
385 * Unicode 5.0 support
386
387 * GOption supports floating point numbers 
388
389 * GKeyFile supports floating point numbers
390
391 * Bug fixes:
392  155884 gatomic.c should be based on new SDK
393  157877 update-desktop-database doesn't handle duplicate entries
394  164719 keyfile parser doesn't support floats
395  327662 Import BookmarkFile from libegg
396  329548 Add G_OPTION_ARG_DOUBLE
397  329789 option-test.c type confusion
398  332841 Segmentation Fault when %llu is passed to vasnprintf and 
399         HAVE_SNPRINTF is not defined
400  333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define 
401         _WIN32_WINDOWS 0x0401'
402  333916 g_timer_elapsed docs should mention that microseconds 
403         may be NULL
404  334440 dlerror() portability issue causes crash on (old) a.out 
405         NetBSD platform
406  334646 goption + error out params
407  334799 g_remove() must check return value of remove()
408  334943 make check FAIL: threadpool-test
409  335215 Some breakages with GThreadPool
410  336085 g_option_context_new parameter lacks better explanation
411  336677 Documentation for g_object_ref_sink() is incorrect
412  337027 gbookmarkfile.c: sys/time.h include error
413  337553 Wrong escaping of URIs
414  338572 Dereferencing NULL value in g_key_file_get_group_comment
415  338845 g_completion_complete_utf8 crashes when NULL is passed to it
416  339337 g_bookmark_file_set_description
417  339338 gbookmarkfile.c, function expand_exec_line
418  339340 gbookmarkfile.c, function bookmark_app_info_dump
419
420 * Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn,
421                        or,pt_BR,ro,tr,vi,zh_CN)
422
423
424 Overview of Changes from GLib 2.10.0 to GLib 2.10.1
425 ===================================================
426
427 * Bugs fixed:
428  314794 Broken pthread detection on Darwin [Gregor Riepl]
429  322476 Missing check for .dylib [Vladimir Panov]
430  333651 Inconsistent _g_charset_get_aliases prototype [Julio 
431         M. Merino Vidal]
432  333761 GInitiallyUnowned breaks application code [Sven Herzberg]
433
434 * Win32 changes:
435  - Fix g_listenv() implementation.
436  - Allow up to 100 GPrivate structs
437
438 * Translation updates (fr,hu,lt,pl,sv)
439
440
441 Overview of Changes from GLib 2.9.6 to GLib 2.10.0
442 ==================================================
443
444 * Bugs fixed:
445  328997 64bit pointer trunction in glib slab-allocator
446         [Pascal Hofstee]
447  331110 g_cond_broadcast(inform_cond) without holding 
448         inform_mutex [Chris Wilson, Sebastian Wilhelmi]
449  332093 Fix some leaks in the tests [Kjartan Maraas]
450  332435 g_utf8_strlen returns wrong value if a maximum 
451         number of bytes to check is specified 
452         [Matthias Clasen]
453  331367 gslice requires more POSIX-like semantics for 
454         GPrivate destructors [Tor Lillqvist]
455
456 * Documentation improvements [Matthias, Kang Jeong-Hee,
457   Tor Lillqvist, Stefan Kost]
458
459 * Translation updates (el,eu,ka,uk)
460
461 Overview of Changes from GLib 2.9.5 to GLib 2.9.6
462 =================================================
463
464 * Bugs fixed: 
465  329124 distclean removes README [Kjartan Maraas, Tim Janik]
466  317679 GRelation field type not documented [Behdad Esfahbod]
467  329123 Typo in GTime docs [Kjartan Maraas]
468
469 * Documentation improvements [Sven Herzberg, David
470   Schleef, Kjartan Maraas, Behdad Esfahbod]
471
472 * Translation updates (cs,cy,it,ko,pt,sq,sr,sr@Latn,ru
473
474 Overview of Changes from GLib 2.9.4 to GLib 2.9.5
475 =================================================
476
477 * Memory management: 
478   Runtime debugging support: The slice allocator
479   can be turned off by setting G_SLICE=always-malloc
480   in the environment. Zeroing of freed memory can
481   now be turned on at runtime by setting
482   G_DEBUG=gc-friendly in the environment. [Tim Janik]
483
484 * Bugs fixed:
485  328253 HP-UX/IA-64 uses ".so" as default shared library 
486         extension [Albert Chin]
487  143380 unicode-encoding test fails converting to UTF-16 
488         with libiconv [Marc Moorcroft]
489  328254 Build breakage (GSlice) [Jens Ganseuer]
490  328705 C99ism in glib/gmem.c [Kazuki Iwamoto]
491
492 * Translation updates (da,et,zh_CN)
493
494 Overview of Changes from GLib 2.9.3 to GLib 2.9.4
495 =================================================
496
497 * Type system:
498   Fix a problem with g_object_compat_control() which 
499   can lead to segfaults in GTK+ applications on 64bit 
500   platforms. 
501
502 * Thread suppport: 
503   Unused threads now fall back to the global pool after 
504   500 milliseconds, where they wait for another 
505   max-idle-time milliseconds. [Sebastian Wilhelmi]
506
507 * Fix a memory allocation problem in GKeyFile. [Morten 
508   Welinder]
509
510
511 Overview of Changes from GLib 2.9.2 to GLib 2.9.3
512 =================================================
513
514 * GTree:
515  - Replace the simple recursive implementation by
516    a nonrecursive, threaded one  [Maurizio Monge]
517
518 * Change g_filename_display_name and
519   g_filename_display_basename to use the Unicode
520   replacement character U+FFFD instead of a question
521   mark, and don't append "(invalid encoding)"  [Matthias]
522
523 * Documentation improvements [Sven Herzberg, Federico
524   Mena Quintero, Stefan Kost]
525
526 * Bugs fixed:
527  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X 
528         [Bogdan Nicula]
529  326558 Some test failures on IRIX 6.5 [Daichi Kawahata]
530  169285 "threaded" tree implementation for GTree 
531         [Maurizio Monge]
532  326747 g_filename_display_basename adds (invalid encoding) 
533         [Alberto Ruiz]
534
535 Other contributors: Christian Kellner, Murray Cumming
536
537 New and updated translations (bg,ca,de,es,et,gu,ja,nl,th,vi)
538
539
540 Overview of Changes from GLib 2.9.1 to GLib 2.9.2
541 =================================================
542
543 * Memory management:
544  - Add tests for cache colorization [Tim Janik]
545  - Minimize space consumption if small amounts of differently
546    sized slices are allocated, at a small performance cost.  [Tim]
547
548 * Thread support:
549  - Add g_atomic_pointer_set() and g_atomic_int_set() [Tim Janik,
550    Sebastian Wilhelmi]
551  - Add g_thread_pool_set_sort_function() to allow sorting the 
552    tasks of a threadpool.  [Martyn Russell]
553  - Add g_thread_pool_set_idle_time() to allow unused threads
554    to exit after a certain time.  [Martyn]
555
556 * Type system:
557  - introduce a new type GInitiallyUnowned, which has an initial
558    floating reference. [Tim]
559  - Add support for GType parameters. [Matthias]
560
561 * Main loop:
562  - Add g_main_context_is_owner() to determine if the current
563    thread is the owner of the context.  [Michael Meeks]
564
565 * Provide g_access(), g_chdir(), g_unlink(), g_rmdir() as 
566   wrapper functions instead of macros.  [Manish Singh]
567
568 * Documentation improvements [Tim, Matthias, Federico Mena Quintero,
569   Stefan Kasal, Dan Williams]
570
571 * New and updated translations (en_CA,fi,fr,gl,ml,nb,no,zh_HK,zh_TW)
572
573 * Bugs fixed:
574  324179 g_allocator_new() returns pointer to const dummy which Gtk+ 2.8 
575         tries to modify [J. Ali Harlow]
576  324332 g_option_context_parse() returns false without setting error 
577         [Tim-Philipp Müller]
578  324950 GLIB 2.9.1 testcase errors [Dan Yefimov]
579  325015 gslice.c: process.h is needed on Windows [Kazuki Iwamoto]
580  321978 G_DATALIST_GET_FLAGS() macro is not casting datalist to 
581         gpointer [Andrew Paprocki]
582  316221 G_LOCK warns about breaking strict-aliasing [Michal Benes, 
583         Stanislav Brabec]
584  325273 Error in documentation for glib_check_version () [Declan Naughton]
585  325310 g_spawn_sync hangs when catching both stdout and 
586         stderr [Tor Lillqvist]
587  325249 gcc warning when using g_rmdir from <glib/gstdio.h> [Jani Monoses]
588  325864 glib/gthreadpool.c:"#define debug(...)" is C99 [Kazuki Iwamoto]
589  325874 Should say somewhere that source IDs are > 0 [Dan Williams]
590  325438 a typo (compatability) [Stefan Kasal]
591  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X [Bogdan Nicula]
592
593
594 Overview of Changes from GLib 2.9.0 to GLib 2.9.1
595 =================================================
596
597 * Memory management
598  - The slice allocator is implemented [Tim Janik]
599  - g_slice_free_chain() has been renamed to 
600    g_slice_free_chain_with_offset()  [Tim, Behdad Esfahbod]
601  - Mem chunks are deprecated [Matthias Clasen]
602
603 * Data structures
604  - Hash tables are refcounted, and have a boxed type [Tim]
605
606 * Thread support
607  - Support for Solaris threads has been removed 
608    [Sebastian Wilhelmi, Andrew Paprocki]
609  - g_async_queue_sort(), g_async_queue_push_sorted() have 
610    been added to allow GAsyncQueue to be used as a priority 
611    queue, together with the corresponding _unlocked 
612    variants  [Martyn Russell]
613
614 * GObject:
615  - The concept of a floating initial reference has been
616    moved from GtkObject to GObject [Tim]
617
618 * Win32 changes:
619  - Make g_rename() replace existing files [Tor Lillqvist]
620
621 * Misc new API:
622  - G_GUINT64_CONSTANT macro to define guint64 
623    constants [Andrew Paprocki]
624  - G_GNUC_WARN_UNUSED_RESULT macro to instruct the 
625    compiler to emit a warning if the value returned
626    by a function is ignored. [Arjan van de Ven, Alex Larsson]
627  - GList and GSList now have sort functions which take an
628    extra user data argument [Martyn Russell]
629  - g_param_spec_ref_sink() has been added for consistency [Tim]
630
631 * $LOGNAME is respected when determining user data. [Laszlo Peter]
632
633 * Other changes and bug fixes [Tim, Matthias, Behdad, 
634   Christian Persch, Benedikt Meurer, Andrew Paprocki, 
635   Kazuki Iwamoto, Alexis S. L. Carvalho, Stanislav Brabec,
636   Andreas Schwab, Kalle Vahlman]
637
638 * Documentation
639  - Deprecation warnings carry version information [Matthias]
640  - The slice allocator has been documented [Matthias, Tim]
641  - Other improvements [Morten Welinder]
642
643 Overview of Changes from GLib 2.8.x to GLib 2.9.0
644 =================================================
645 * Unicode support:
646  - The Unicode tables have been updated to Unicode 4.1, 
647    adding several new values to the GUnicodeBreakType 
648    enumeration. This breaks Pango <= 1.10 
649    [Behdad Esfahbod]
650  - The various Unicode character predicate functions 
651    (g_unichar_isalpha, g_unichar_isdigit,...) have
652    been optimized
653    [Behdad]
654  - g_utf8_pointer_to_offset, g_utf8_offset_to_pointer:
655    These functions handle negative offsets now, and
656    going backwards in g_utf8_offset_to_pointer uses
657    "stutter stepping".
658    [Larry Ewing, Matthias Clasen]
659
660 * Memory management:
661  - Mem chunks are no longer used internally in GLib and
662    GObject. GMemChunk will be deprecated in GLib 2.10
663  - All APIs based on GAllocator (g_list_push/pop_allocator,
664    and similar push/pop_allocator functions for other
665    data structures) have been deprecated, since they
666    never worked as intended.
667  - The g_slice_* functions have been added as a 
668    new API for fast allocation of small memory blocks. 
669    The implementation in GLib 2.9.0 is just a simple 
670    wrapper around malloc. GLib 2.10 will have an
671    efficient and scalable implementation. 
672    [Tim Janik, Matthias]
673
674 * Pattern matching:
675  - g_pattern_match has been optimized to avoid
676    unnecessary recursion.
677    [Tim, Matthias]
678
679 * g_intern_string, g_intern_static_string: 
680  - New functions to intern strings. These are now used 
681    by GObject to avoid duplicating static strings 
682    [Matthias]
683
684 * g_thread_foreach: 
685  - New function to iterate over all GThreads 
686    [Tim, Matthias]
687
688 * g_date_set_time_t, g_date_set_time_val:
689  - New functions to set a GDate from a time_t or
690    GTimeVal value. g_date_set_time has been deprecated 
691    in favor of these.
692    [Roger Leigh]
693
694 * g_snprintf and g_vsnprintf:
695  - These functions are no longer declared in gprintf.h, 
696    since they are in glib.h
697    [Matthias]
698
699 Overview of Changes from GLib 2.8.0 to GLib 2.8.1
700 =================================================
701 * Optimize single-character insertions in GString [Ross Burton]
702 * Fix build problems on OS X
703 * Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
704 * Other bug fixes [Matthew F. Barnes, Stepan Kasal] 
705 * Documentation improvements [Tristan van Berkom, Behnam
706   Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
707 * New and updated translations (ca,cy,ko,ro,uk)
708
709 Overview of Changes from GLib 2.7.7 to GLib 2.8.0
710 =================================================
711 * Make g_value_transform() handle enum values
712   correctly on ppc64.  [Michael Lorenz]
713   (Third-party code accessing enumeration values 
714   in GValues should also be changed to access 
715   v_long, not v_int, in order to work on bigendian 
716   64bit machines.)
717 * Make g_flags_get_first_value() handle a value
718   of 0 meaningfully. [Tim-Philipp Müller] 
719
720 Overview of Changes from GLib 2.7.6 to GLib 2.7.7
721 =================================================
722 * Make atomic operations on s390 work [Matthias]
723 * Fix C++ guards in gstdio.h [Tor Lillqvist]
724
725 Overview of Changes from GLib 2.7.5 to GLib 2.7.6
726 =================================================
727 * Add native implementations of atomic operations 
728   on s390 [Matthias]
729 * Make atomic reference counting of closures
730   work on s390 [Matthias]
731 * Avoid an infinite loop in g_convert_with_iconv().
732   [Sebastian Bacher]
733 * Documentation improvements [Ross Burton]
734
735 Overview of Changes from GLib 2.7.4 to GLib 2.7.5
736 =================================================
737 * Thread-related changes
738  - Fix build issues on HP-UX [Paul Cornett]
739  - Threadsafe access to flags stored in datasets [Tim Janik]
740  - Fix several issues with atomic refcounting for 
741    closures, objects and paramspecs [Tim]
742  - Improve tests for atomic refcounting changes [Tim]
743 * Fix handling of stateful encodings in g_convert_* [Matthias]
744 * Fix translation of GOption help output [Dan Winship]
745 * Catch format errors in translations. This may cause 
746   "make check" to fail when using older versions
747   of gettext [Matthias]
748 * Win32 bug fixes [Tor Lillqvist]
749 * Documentation improvements [Ross Burton, Jochen Baier, 
750   Matthias, Tim]
751 * New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
752
753 Overview of Changes from GLib 2.7.3 to GLib 2.7.4
754 =================================================
755 * Fix g_atomic_pointer_compare_and_exchange 
756   on Sparc64 [Gert Doering]
757 * Fix a hang in g_thread_pool_free. [Hong Jen Yee]
758 * Win32 bug fixes [Tor Lillquist]
759 * Other bug fixes [Benoit Dejean, Manish Singh]
760 * Documentation improvements [Bryan Silverthorn,
761   Callum McKenzie] 
762 * New and updated translations (de,lt,sq,zh_CN)
763
764 Overview of Changes from GLib 2.7.2 to GLib 2.7.3
765 =================================================
766 * GOption
767  - Allow callbacks with optional arguments [Pawel Sliwowski]
768  - Allow to turn off the automatic long option name
769    disambiguation  [Adam McLaurin]
770  - Only allow printable ASCII as short option names [Matthias]
771 * Win32
772  - Build fixes [Tor Lillqvist]
773  - Rewrite iochannel socket implementation [Tor]
774 * GObject
775  - Threadsafety improvements; in particular, refcounting
776    of objects is done atomically now. [Wim Taymans, Tim Janik]
777 * Bug fixes [Morten Welinder, Matthias, Wim Taymans]
778 * Documentation improvements [Richard Laager, Matthias]
779 * New and improved translations (bf,cs,hu,nb,nl,no)
780
781 Overview of Changes from GLib 2.7.1 to GLib 2.7.2
782 =================================================
783 * Win32 build fixes [Hans Breuer]
784 * Bug fixes [Mikael Magnusson]
785 * Documentation improvements [Matthias Clasen]
786 * New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
787
788 Overview of Changes from GLib 2.7.0 to GLib 2.7.1
789 =================================================
790 * GOption 
791  - Allow callback arguments without parameters [Dan Winship]
792 * GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
793 * Misc new functions:
794  - g_get_host_name [Tor Lillqvist]
795  - g_mkdir_with_parents [Tor]
796  - g_build_pathv, g_build_filenamev [Todd A. Fisher, 
797    Matthias Clasen]
798 * Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
799   Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
800 * Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
801 * New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
802   sk,th,zh_TW)
803
804 Overview of Changes from GLib 2.6.x to GLib 2.7.0
805 =================================================
806 * GKeyFile
807  - Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
808  - Accept \r\n as line end [Bastian Nocera]
809  - Don't interpret leading zeros as octal numbers. [Matthias]
810  - Make key and group removal work [David Hoover, Matthias Hasselmann]
811 * GOption
812  - Improve formatting of --help output [Matthias, Noah Levitt]
813  - Accept -? [Matthias]
814  - Warn about duplicate main groups [Jeff Franks]
815  - Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
816  - Report missing arguments as errors [Björn Lindqvist]
817  - Add a boxed type for GDate [Tim-Philipp Müller]
818 * GTree
819  - g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
820 * Stdio wrappers
821  - Work regardless of large file support [Manish Singh]
822  - Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
823 * GObject
824  - Implement "toggle references" to help language bindings [Owen Taylor]
825  - Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
826  - Make pspec lookup a bit faster [Morten Welinder]
827 * Add g_listenv() to list all set environment variables [Hans Petter Jansson]
828 * Add g_file_set_contents() to atomically write a file.  [Søren Sandmann,
829   Sven Neumann, Manish, Alexis S. L. Carvalho]
830 * Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
831 * Add g_utf8_collate_key_for_filename() to sort filenames taking
832   extensions and numeric suffixes into account.  [Ole Laursen, Alex Larsson]
833 * Add G_GNUC_NULL_TERMINATED to mark varargs function with 
834   NULL-terminated argument lists. [Marc Meissner]
835 * Win32 changes
836  - Improved debugability [Ulf Lamping, Hans Breuer]
837  - Make filename handling more robust [Tor, Billy Skaggs]
838  - Improve g_get_system_data_dirs() [Tor]
839  - Use more precise timers [Tor]
840  - Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ögren]
841 * Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas, 
842   Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent, 
843   Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah, 
844   J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
845   Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu, 
846   Christian Biere, Noah, Benoît Carpentier]
847 * Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
848   Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink, 
849   Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
850 * New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
851   hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
852
853 Overview of Changes from GLib 2.6.0 to GLib 2.6.1
854 =================================================
855 * GOption
856  - Make gtk_init(NULL, NULL) work again [Marcin Krzyzanowski]
857  - Improve handling of -- [Matthias Clasen]
858  - Don't show G_OPTION_REMAINING in --help output [Matthew F. Barnes]
859 * g_find_program_in_path() doesn't return directories [Tommi Komulainen]
860 * Add gmodule-export-2.0.pc [Matthias]
861 * Win32 changes
862  - Improve hangling of UNC paths [Tor Lillqvist]
863  - g_getenv(), g_setenv(), g_unsetenv(), g_find_program_in_path()
864    take and return UTF-8 now [Tor] 
865  - Make g_file_test() work more reliably, and use PATHEXT
866    when check for executables [Tor]
867  - Build and cross-compilation fixes [J. Ali Harlow]
868 * Other bug fixes [Jens Hatlak, Morten Welinder, 
869   Tor, Kalpesh Shah, Adrian Bunk]
870 * Documentation improvements [Marcin Krzyzanowski, Tor, Crispin
871   Flowerday, Mariano Suárez-Alvarez, Christian Biere, Danny Milo,
872   Vincent Untz, Bastien Nocera]
873 * New and updated translations (cy,de,nl,ru,sq,sv)
874
875 Overview of Changes from GLib 2.4.x to GLib 2.6.0
876 =================================================
877
878 * Major new APIs
879   - GOption, a commandline option parser
880   - GKeyFile, a parser/editor for the .ini like files 
881   - Functions to support the XDG basedir specification
882   - Wrappers for common POSIX pathname functions to handle filename
883     encodings consistently. On Windows, these use UTF-8.
884
885 * Miscellaneous new functions
886   - g_filename_display_name() converts filenames in displayable UTF-8 strings
887   - g_uri_list_extract_uris() splits uri lists
888   - g_date_get_iso8601_week_of_year() gets ISO 8601 week numbers
889   - g_log_set_default_handler() installs an alternate default log handler
890   - g_get_language_names() obtains a list of applicable locale names
891   - g_strv_length() calculates the length of NULL-terminated string arrays
892   - g_win32_get_windows_version() determines the Windows version 
893   - G_GNUC_INTERNAL marks functions as non-exported
894   - glib_check_version() checks the GLib version at runtime
895   - g_debug() completes the family of logging functions
896
897 * Performance improvements
898   - Optimize g_utf8_validate()
899   - Optimize g_markup_parse_context_parse()
900   - Reduce signal connection complexity from O(n) to O(1) 
901   - Get rid of many PLT entries for internally used exported symbols
902   - Reduce code size by removing literal strings from g_return_if_fail()
903
904 * Other changes
905   - On Windows, GLib functions that take file name arguments now require
906     those to be in UTF-8. Functions that return file names return UTF-8.
907   - Use higher precision for mathematical constants
908   - Don't convert to/from UTF-8 in g_filename_to_uri/g_filename_from_uri
909   - Support ll as printf format modifier for long long on all platforms
910   - Clean up the ABI and enforce the list of exported symbols
911   - Add a .pc file for using gmodule in libraries
912   - Require ngettext
913
914 Overview of Changes from GLib 2.5.7 to GLib 2.6.0
915 =================================================
916 * GOption: Don't list help options if group-specific
917   options have been requested [Glynn Foster]
918 * Make g_get_language_names() track locale changes [Christian Persch]
919 * Win32 bug fixes [Tor Lillqvist]
920 * Bug fixes [Philippe Blain, Owen Taylor, Sebastian Wilhelmi]
921 * New and updated translations (da,es,ja,lt,zh_CN)
922 Bugs fixed: 159530,100697,160271,160645,157255
923
924 Overview of Changes from GLib 2.5.6 to GLib 2.5.7
925 =================================================
926 * Optimize g_utf8_validate() [Owen Taylor, Matthias Clasen]
927 * Optimize g_markup_parse_context_parse() [Havoc Pennington, 
928   Morten Welinder]
929 * Reduce signal connection complexity from O(n) to O(1) 
930   [Sven Neumann]
931 * Add a .pc file for using gmodule in libraries [Owen]
932 * Add G_GNUC_MALLOC to mark functions returning newly 
933   allocated memory  [Matthias]
934 * Win32 bug fixes [Hans Breuer, Tor Lillqvist, Robert Ögren,
935   Bruce Hochstetler]
936 * Bug fixes [Kazuki IWAMOTO, Matthias, Manish Singh, Morten,
937   Frederic Crozat, Tor]
938 * Documentation improvements [Matthias, Tor, Owen]
939 * New and updated translations (cs,da,de,en_CA,en_GB,es,nb,nl,sq,zh_CN)
940
941 Overview of Changes from GLib 2.5.5 to GLib 2.5.6
942 =================================================
943 * GOption
944   - Add G_OPTION_FLAG_REVERSE to allow options 
945     which unset a  boolean variable [Tor Lillqvist]
946 * GChildWatch
947   - Use sigaction instead of signal [Jonas Jonnson, 
948   Archana Shah]
949   - Make the very first SIGCHLD work [Gustavo Carneiro]
950 * Bug fixes [Morten Welinder, Tor, David MacLachlan,
951   Manish Singh, J. Ali Harlow]
952 * Documentation improvements [Matthias Clasen, Tor]
953 * Updated translations (da,ja,tr,zh_CN)
954
955 Overview of Changes from GLib 2.5.4 to GLib 2.5.5
956 =================================================
957 * GKeyFile
958   - Cleanups, add more error checking [Ray Strode]
959   - Fall back to the untranslated string when getting 
960     locale strings [Mark McLoughlin]
961 * GOption
962   - Document GOption [Matthias Clasen]
963   - Better support for rest arguments [Owen Taylor, Matthias]
964   - Handle conflicts between groups [Matthias]
965 * Add g_lstat() to the stdio wrappers [Tor Lillqvist]
966 * Add g_filename_display_name() to convert filenames
967   in displayable UTF-8 strings  [Alex Larsson, Matthias]
968 * Win32 bug fixes [Kazuki IWAMOTO, Hans Breuer, Tor]
969 * Bug fixes [Christophe Fergeau, Morten Welinder, 
970   Owen, Kjartan Maraas, Mark]
971 * Documentation improvements [Matthias, Tor]
972
973 Overview of Changes from GLib 2.5.3 to GLib 2.5.4
974 =================================================
975 Add GKeyFile, a parser/editor for the .ini like files used in various
976    freedesktop.org specifications. [Ray Strode]
977 Make the handling of filename encodings consistent across all
978    GLib functions, introduce wrappers for common POSIX 
979    functions which accept the same filename encoding. [Tor Lillqvist, 
980    Owen Taylor]
981 GOption
982  - Rename g_context_option_error_quark() to a more language-binding
983    friendly name [Murray Cumming]
984  - Accept backslashes in filenames on Win32 [Tor Lillqvist]
985 * Strip the internal aliasing prefix IA__ from function names in 
986   assertions [Matthias Clasen]
987 * Add a function to split uri lists. [Matthias]
988 * Win32 bug fixes 
989  - Don't open console windows [Tor]
990 * Other bug fixes [Philippe Blain, Robert Ögren, Hidetaka Iwai, Matthias,
991  Morten Welinder, Mats-Ola Persson, Tor, Nickolay V. Shmyrev, Kjartan Maraas,
992   Anders Carlsson, Tim-Philipp Müller, Lucas Rocha, Andrea Campi, Manish
993   Singh, Thomas Fitzsimmons, Kazuki IWAMOTO]
994 * Documentation improvements [Matthias, Linus Walleij, Nickolay, Philippe, 
995  Adam Hooper, Gustavo Carneiro]
996 * New and updated translations (cs,en_CA,en_GB,ja,nb,nl,or,sr,sr@Latn,sq)
997
998 Overview of Changes from GLib 2.5.2 to GLib 2.5.3
999 =================================================
1000 * GOption
1001  - set the program name from argv[0] [Masatake YAMATO] 
1002  - make contexts work without a main group [Anders Carlsson]
1003 * Performance 
1004  - Get rid of many PLT entries for internally used exported symbols,
1005    and clean up the ABI at the same time and make make check check the
1006    list of exported symbols.  [Matthias Clasen]
1007 * Add API to get ISO 8601 week numbers [Niklas Lundell]
1008 * Add API to install an alternate default log handler [Darin Adler]
1009 * Add API to obtain a list of applicable locale names [Hidetoshi Tajima]
1010 * Reduce code size bloat by removing literal strings from
1011  the g_return_if_fail() macros [Owen Taylor]
1012 * Add g_strv_length [Tim-Philipp Müller]
1013 * Win32 changes
1014  - Add API to determine the Windows version [Tor Lillqvist]
1015 * Other bug fixes [Stepan Kasal, Anders, Tor, Kazuki Iwamoto,
1016   Manish Singh]
1017 * Documentation improvements [Morten Welinder, Matthias]
1018 * New and updated translations (es,nn,ro)
1019
1020 Overview of Changes from GLib 2.5.1 to GLib 2.5.2
1021 =================================================
1022 * Add G_GNUC_INTERNAL macro [Arjan van de Ven]
1023 * Add GOption, a commandline option parser [Anders Carlsson]
1024 * Add glib_check_version [Michael Natterer]
1025 * Add XDG basedir API [Ray Strode]
1026 * Require ngettext [Danilo Segan]
1027 * Bug fixes [Manish Singh, Ray Strode, Vincent Noel, 
1028   Jon-Kare Hellan, Jody Goldberg]
1029 * Win32 bug fixes [Tor Lillqvist, Hans Breuer, Peter Zelezny]
1030 * Documentation improvements [Matthias Clasen, Vincent Untz, Christian Persch]
1031 * New and updated translations (bs,eu,fi,gu,ne,pa)
1032
1033 Overview of Changes from GLib 2.5.0 to GLib 2.5.1
1034 =================================================
1035
1036 * Bug fixes [Oliver Guntermann, Sven Neumann, James 
1037   Henstridge, Hiroyuki Ikezoe, Matthias Clasen, Robert 
1038   Ögren, Tommi Komulainen]
1039 * Documentation improvements [Soeren Sandmann, 
1040   Christophe Fergeau, Danek Duvall]
1041 * New and updated translations (eu,hi)
1042   
1043 Overview of Changes from GLib 2.4.1 to GLib 2.5.0
1044 =================================================
1045
1046 * New functions g_debug [Sven Herzberg]
1047 * Use higher precision for mathematical constants [Morten 
1048  Welinder]
1049 * Don't convert to/from UTF-8 in g_filename_{to,from}_uri 
1050  [Federico Mena Quintero]
1051 * Win32
1052  - Handle empty digit string in printf() functions 
1053    correctly [Tor Lillqvist]
1054  - Support ll as format modifier for long long [Tor]
1055  - Be more careful about HOME [Tor, Ivan Wong]
1056  - Bug fixes [John Ehresman]
1057 * Miscellaneous bug and portability fixes [Danilo Segan, 
1058  Owen Taylor, Nikolai Weibull, Benoît Carpentier, Morten 
1059  Welinder, Manish Singh, Sven Neumann, Julio M. Merino Vidal,
1060  Kaz Sasayama, Murray Cumming, Federico, Mariano Suarez-Alvarez]
1061 * Documentation updates [Matthias Clasen, Crispin Flowerday,
1062  Tommi Komulainen, Federico Mena Quintero, Ed Griffiths]
1063 * New and updated translations (ja,ne,no,wa)
1064  
1065 Overview of Changes from GLib 2.4.0 to GLib 2.4.1
1066 =================================================
1067
1068 * Win32 bug fixes [Tor Lillqvist, Roger Leigh, John Ehresman]
1069 * Miscellaneous bug and portability fixes [Owen Taylor,
1070   Matthias Clasen, Jonas Jonsson, Christian Krause,
1071   Nickolay V. Shmyrev, Christophe Saout, Philippe Blain,
1072   Piotr Klaban]
1073 * Documentation updates [Matthias]
1074 * New and updated translations (ca,cs,cy,el,en_CA,en_GB,es,eu,fi,
1075   fr,gu,he,id,nl,pt,pl,ru,sr,sr@ije,sr@Latn,sv,uk)
1076
1077 Overview of Changes from GLib 2.3.6 to GLib 2.4.0
1078 =================================================
1079
1080 * Handle invalid-UTF-8 in g_log() properly [Matthias Clasen]
1081 * Win32 bug fixes [Tor Lillqvist, Bruce Hochstetler]
1082 * Miscellaneous bug and portability fixes [Olivier Biot, David L. Cooper II, 
1083   Kjartan Maraas, Frédéric L. W. Meunier, Christof Petig, Manish Singh, 
1084   Sebastian Wilhelmi]
1085 * Documentation updates [Owen]
1086 * Updated translations (hr,ro)
1087
1088 Overview of Changes from GLib 2.3.5 to GLib 2.3.6
1089 =================================================
1090
1091 * GAtomic bug fixes [Sebastian Wilhelmi, Mark McLoughlin]
1092 * GMain threading fixes and improvements [Sebastian]
1093 * Win32 [Tor Lillqvist]
1094  - restore some symbols extraneously exported from gobject to maintain ABI compatibility
1095  - Misc build improvements and fixes [Tor, Cedric Gustin, Hans Breuer]
1096 * Documentation updates [Sebastian, Takeshi AIHANA, Matthias, Sven Herzberg]
1097 * New and updated translations (be,es,fi,ga,pa,sr@ije,zh_CN)
1098
1099 Overview of Changes from GLib 2.3.3 to GLib 2.3.5
1100 =================================================
1101
1102 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
1103 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
1104 * Add atomic operations and use it for the async queue and
1105   gonce implementation. [Sebastian Wilhelmi]
1106 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
1107 * Add g_main_depth() for finding the recursion depth of the main
1108   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
1109 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
1110 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
1111 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
1112 * Updated translations (cy,et,ga,sq)
1113
1114 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
1115 =================================================
1116
1117 * Add a native AIX gmodule implementation. [Laurent Vivier]
1118 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
1119 * Extend GQueue API to match the GList API. [Soeren Sandmann]
1120 * Add g_hash_table_find().  [Tim Janik]
1121 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
1122 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
1123 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
1124 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
1125   Matthias]
1126 * Add g_strsplit_set(). [Soeren]
1127 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
1128   Soeren, Matthias]
1129 * Win32 build fixes. [Tor Lillqvist]
1130 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
1131   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
1132   Matthias]
1133 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
1134
1135 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
1136 =================================================
1137
1138 * Add G_MAXSIZE. [Manish Singh]
1139 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
1140   implementing the init-by-array functionality of the 
1141   original mersenne twister. Add g_rand_copy(). Improve seeding. 
1142   [George Lebl]
1143 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
1144 * Add g_ptr_array_foreach(). [Matthias Clasen]
1145 * Add g_timer_continue(). [Tim-Philipp Müller]
1146 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
1147 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
1148   g_file_test() there too [Hans Breuer] 
1149 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
1150 * Add G_DEFINE_TYPE() plus variants to ease the constuction
1151   of GObject boilerplate code.  [Tim Janik]
1152 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
1153 * Documentation improvements [Matthias, Manish]
1154 * Win32 build fixes [Hans]
1155 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
1156   Zack Rusin]
1157 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
1158
1159 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
1160 =================================================
1161
1162 * Add glib/gi18n.h and glib/gi18n-lib.h for common
1163   gettext support, including a Q_() macro for translation
1164   with context [Matthias Clasen]
1165 * Add a more flexible G_FILENAME_ENCODING variable
1166   as a replacement for G_BROKEN_FILENAMES [Matthias]
1167 * Fix the return value g_main_context_iterate() for
1168   newly ready sources [Padraig O'Briain]
1169 * Handle Hangul composition for normalization [Noah Levitt]
1170 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
1171 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
1172 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
1173 * Documentation improvements [Matthias]
1174 * GObject [Tim Janik]
1175  - Support '-' in g_signal_connect()/disconnect() names
1176    like 'swapped-signal'.
1177  - Add g_type_class_peek_static() and use to optimize
1178    g_object_new() for static types [Tim]
1179  - Allow setting construct-only properties from within
1180    init() implementations
1181  - Enforce readability/writeability in g_object_set/get()
1182 * Fix bug with g_ascii_strtod and multi-byte separator.
1183   [Behdad Esfahbod, Roozbeh Pournader]  
1184 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
1185   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
1186   Morten Welinder]
1187 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
1188
1189 Overview of Changes from GLib 2.2.x to GLib-2.3.0
1190 =================================================
1191
1192 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
1193 * Update Unicode data to Unicode 4.0 [Noah Levitt]
1194 * Support XML-safe formatted output with 
1195   g_markup_[v]printf_escaped [Owen Taylor]
1196 * Add g_file_read_link to read symbolic links [Matthias]
1197 * Add g_unichar_get_mirror_char to obtain the 
1198   mirrored variant of a character [Noah]
1199 * Support for one-time initialization functions. 
1200   [Sebastian Wilhelmi]
1201 * Miscellaneous API additions: g_vasprintf
1202   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
1203 * Docs improvements [Matthias]
1204 * Add support instance-private data on classed types
1205   [Mark McLoughlin, Tim Janik, Owen]
1206 * Optimize signal emissions [Soeren Sandmann, Tim]
1207 * Support a "default vtable" per interface [Tim]
1208 * Add support for properties on interfaces [Owen, Tim]
1209 * Miscellaneous API additions: g_value_take_string(),
1210   g_value_take_param(), g_value_take_object(), 
1211   g_value_take_boxed(). [Matthias]
1212 * Win32 build fixes [Tor Lillqvist]
1213
1214 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
1215 =================================================
1216
1217 * Fix a problem with g_thread_init() on 64-bit problems
1218   [Alceste Scalas, Sebastian Wilhelmi]
1219 * Add assembly implementations of byteswap macros
1220   for ia64 and x86_64. [Manish Singh]
1221 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
1222 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
1223
1224 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
1225 =================================================
1226
1227 * Win32 bug fixes [Tor Lillqvist]
1228 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
1229   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
1230 * Ensure we have a GUINT64_FORMAT by pulling in Trio
1231   if necessary [Manish Singh]
1232 * Further Trio build fixes [Matthias Clasen, Owen]
1233 * Hack around gcc, libtool issues with -pthread [Owen]
1234 * Docs improvements [Matthias]
1235 * Bug and portability fixes 
1236 * Updated and new translations (bg,de,fi,fr,sq,fr)
1237
1238 Other contributors: Kai Poitschke, Morten Welinder
1239
1240 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
1241 =================================================
1242
1243 * autoconf changes to make it possible to cross compile
1244   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
1245   Johannes Stezenbach]
1246 * Use libintl when it has bind_textdomain_codeset() and
1247   GLib doesn't. [Owen]
1248 * Improve generation of pseudo-random integers [Morten Welinder, 
1249   Sebastian Wilhelmi]
1250 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
1251 * Cleanup include order [Sven Neumann]
1252 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
1253 * Doc fixes and additions [Matthias]
1254
1255 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
1256   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
1257
1258 Overview of Changes from GLib 2.0.x to GLib-2.1.x
1259 =================================================
1260
1261 * Add copy of the Trio library to build and use for printf() when 
1262   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
1263 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
1264 * Add g_markup_parse_context_get_element() [Matthias]
1265 * Add g_utf8_strreverse [Matthias]
1266 * Add g_ascii_strtoull() [Tim Janik]
1267 * Support scanning of 64-bit values with GScanner [Tim]
1268 * Add g_set/get_application_name() [Havoc Pennington]
1269 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
1270   Use for g_return_if_fail(). [Matthias Clasen]
1271 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
1272 * Improve the seeding algorithm of GRandom to avoid problems
1273   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
1274   environment variable. [Sebastian Wilhelmi]
1275 * Improve thread configure checks, use -pthread where applicable
1276   [Sebastian]
1277 * Improve handlng of thread priorities [Sebastian]
1278 * Fix up parameter names that might shadow functions from
1279   system headers [Soeren Sandmann]
1280 * Clean up usage of deprecated functions [Manish Singh]
1281 * Docs fixes and improvements. In particular, include "Since" information.
1282   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
1283   Owen Taylor, Morten Welinder]. 
1284
1285 Overview of Changes in GLib 2.0.7
1286 =================================
1287
1288 * Fix C++ warnings in gtype.h [Dom Lachowicz]
1289 * Fix g_type_fundamental_next() [Tim Janik]
1290 * Fix various missing includes of config.h [Morten Welinder]
1291 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
1292 * Various 64-bit fixes [Manish Singh]
1293 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
1294 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
1295 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
1296      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
1297      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
1298 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
1299
1300 Overview of Changes in GLib 2.0.6
1301 =================================
1302
1303 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
1304 * Clean up debug spew from GObject [Anders Carlsson]
1305 * Compiler warning fixes [David L. Cooper II]
1306 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
1307 * Fixes for --disable-debug [Sebastian Wilhelmi]
1308 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
1309   Rajkumar Sivasamy, Laurent Vivier]
1310 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
1311   Sebastian Rittau, Linus Welleij]
1312 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
1313 * Updated translations (bg,ko,vi)
1314
1315 Overview of Changes in GLib 2.0.5
1316 =================================
1317
1318 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
1319 * Clean up debug spew from GObject [Anders Carlsson]
1320 * Compiler warning fixes [David L. Cooper II]
1321 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
1322 * Fixes for --disable-debug [Sebastian Wilhelmi]
1323 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
1324   Rajkumar Sivasamy, Laurent Vivier]
1325 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
1326   Sebastian Rittau, Linus Welleij]
1327 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
1328 * Updated translations (bg,ko,vi)
1329
1330 Overview of Changes in GLib 2.0.4
1331 =================================
1332
1333 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
1334 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
1335 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
1336 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
1337
1338 Overview of Changes in GLib 2.0.3
1339 =================================
1340
1341 * Handle sorting 0-length arrays (Ron Arts)
1342 * Threading fixes (Sebastian Wilhelmi)
1343 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
1344   Sebastian, Qingjiang Yuan)
1345 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
1346 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
1347 * Win32 fixes (Tor Lillqvist)
1348 * Try to fix g_get_charset() related segfaults. (Owen)
1349 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
1350   Andrew P. Lentvorski, Jr.)
1351 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
1352 * g_markup fixes. (Matthias Clasen.)
1353 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
1354   Wayne Schuller)
1355
1356 Overview of Changes in GLib 2.0.1
1357 =================================
1358
1359 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
1360 * Performance improvements for GObject parameter lookup, 
1361   g_filename_to/from_utf8() [Alex Larsson]
1362 * Actually check interface prerequisites [Matthias Clasen,
1363   Miroslaw Dobrzanski-Neumann]
1364 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
1365 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
1366 * Fixes for g_log() and threading.
1367   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
1368 * Make g_print(), g_printerr(), g_warning(), etc, convert from
1369   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
1370 * Fixes for GIOChannel on windows. [Tor Lillqvist]
1371 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
1372 * Fix file descriptor leak in g_file_get_contents() [Matthias]
1373 * Workaround iconv() problems on older Solaris [Lauri Alanko]
1374 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
1375 * Minor bug fixes.
1376
1377 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
1378   Akira Tagoh, Morten Welinder
1379
1380
1381 Overview of Changes in GLib 2.0.0
1382 =================================
1383
1384 * Thread portability fixes [Sebastian Wilhelmi]
1385 * Documentation updates [Owen Taylor]
1386 * Make g_strerror(), g_strsignal() properly return UTF-8,
1387   call bind_text_domain_codeset() so that error strings
1388   are in UTF-8 as well. [Owen, Tor Lillqvist]
1389
1390 Overview of Changes in GLib 2.0.0 rc1:
1391 ======================================
1392
1393 * Win32 fixes [Tor Lillqvist]
1394 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
1395 * Fix up g_date_strftime [Daniel Elstner]
1396 * Add some structure padding [Tim Janik]
1397 * Make g_get_homedir() prefer the users home directory to $HOME
1398
1399 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
1400
1401 Overview of Changes in GLib 1.3.15:
1402 ===================================
1403
1404 * Speed up marshalers by using private access to GValue 
1405   [Anders Carlsson, Tim Janik]
1406 * Reduce GValue to 2 elements [Tim]
1407 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
1408 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
1409 * Add padding to various structures [Owen Taylor, Tim]
1410 * Win32 fixes [Tor Lillqvist]
1411
1412 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
1413   Daniel Elstner
1414
1415 Overview of Changes in GLib 1.3.14:
1416 ===================================
1417
1418 * Register value transformations for gint64, guint64 [Andy Wingo]
1419 * Build with large-file support [Sven Neumann, Owen Taylor]
1420 * Fix handling of hostnames in URI's [Darin Adler]
1421 * Main loop bug fixes [Havoc Pennington, Owen]
1422 * Doc fixes and improvements [Manish Singh, Tim Janik]
1423 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
1424 * Win32 fixes [Hans Breuer, Tor Lillqvist]
1425 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
1426 * Miscellaneous bug fixes
1427
1428 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
1429   Morten Welinder.
1430
1431 Overview of Changes in GLib 1.3.13:
1432 ===================================
1433
1434 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
1435 * Miscellaneous win32 fixes [Tor, Hans Breuer]
1436 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
1437 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
1438 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
1439 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
1440   Laszlo Peter, Havoc Pennington, Tim Janik]
1441
1442 Overview of Changes in GLib 1.3.12:
1443 ===================================
1444
1445 * Implement closure chaining, fixing up API (Tim Janik)
1446 * Closure chaining test case (James Henstridge)
1447 * Make GType long not int where both are equal width (Tim)
1448 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
1449 * Fixes for NetBSD. (Dan Winship)
1450 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
1451 * Save space for GBSearchArray (Tim Janik)
1452 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
1453
1454 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
1455   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
1456   Sebastian Wilhelmi.
1457
1458
1459 Overview of Changes in GLib 1.3.11:
1460 ===================================
1461
1462 * Win32 fixes [Hans Breuer, Tor Lillqvist]
1463 * Documentation improvements [Matthias Clasen]
1464 * Portable directory handling API [Hans]
1465 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
1466 * Fix excess relocations in Unicode tables [Andrew Taylor]
1467 * Fix gpattern for UTF-8 [Matthias Clasen]
1468 * Support overriding class closures [Tim Janik]
1469 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
1470 * Hide pointers to type information inside GType to reduce locking
1471   [Alex Larsson, Tim]
1472 * Adds check for direct inclusion of gobject/*.h [Owen]
1473 * GObject API cleanups [Tim]
1474
1475 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
1476   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
1477
1478
1479 Overview of Changes in GLib 1.3.10:
1480 ===================================
1481
1482 * Many Win32 fixes and improvements [Tor Lillqvist]
1483 * Documentation improvements [Matthias Clasen]
1484 * g_string_printfa() renamed to g_string_append_printf()
1485 * Use libcharset from libiconv to implement charset detection
1486   more portably. [Owen Taylor, Hidetoshi Tajima]
1487 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
1488 * Make support for 64 bit integers a requirement [Joshua]
1489 * GPattern improvements [Tim Janik, Matthias]
1490 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
1491 * Many bug fixes and minor tweaks.
1492
1493 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
1494   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
1495   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
1496   Jacob Berkman
1497
1498
1499 Overview of Changes in GLib 1.3.9:
1500 ==================================
1501
1502 * Fixes for comparison of threads [Sebastian Wilhelmi]
1503 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
1504 * Win32 fixes [Tor Lillqvist, Hans Breuer]
1505 * Add a len argument to g_ascii_strup/strdown
1506 * Bug, portability fixes, cleanups.
1507
1508 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
1509
1510
1511 Overview of Changes in GLib 1.3.8:
1512 ==================================
1513
1514 * Documentation updates [Owen]
1515 * Made GType interfaces overridable in derived types
1516 * Many win32 fixes [Tor Lillqvist]
1517 * Miscellaneous cleanups and fixes
1518
1519 Other contributors:
1520   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
1521
1522
1523 Overview of Changes in GLib 1.3.7:
1524 ==================================
1525
1526 * Integrate GClosure support into the main loop [Owen Taylor]
1527 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
1528 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
1529 * Minor hash table optimizations
1530 * Main loop and threading improvements [Sebastian Wilhelmi]
1531 * Added g_ascii_* functions to be used for locale insensitive UTF-8
1532   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
1533 * Add functions for Unicode case-conversion, normalization, and 
1534   collation [Owen]* GString improvements [Owen]
1535 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
1536 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
1537 * Make code 64bit clean [Mark Murnane]
1538 * More G_CONST_RETURN fixes
1539 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
1540 * Miscellaneous bug and API fixes
1541
1542 Other contributors:
1543   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
1544   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
1545   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
1546   Peter Williams
1547
1548
1549 Overview of Changes in GLib 1.3.6:
1550 ==================================
1551
1552 * Threads have a "return value" from g_thread_join
1553 * Removed ability to adjust thread stack size
1554 * Prefix warnings with progname/PID by default, change toggle for this to 
1555   be an env variable G_MESSAGES_PREFIXED not a compile-time option
1556 * GMarkup speedups
1557 * GDate const, convenience fixups
1558 * Include test cases that headers are compilable by C++ compiler
1559 * Add ability to spawn processes with argv[0] != executable path.
1560 * g_strstr_len, g_strrstr, g_strrstr_len
1561 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
1562 * Misc bug fixes
1563
1564
1565 Overview of Changes in GLib 1.3.5:
1566 ==================================
1567
1568 * Added an installed glib-mkenums Perl program for parsing enumeration
1569   declarations from header files.
1570 * Mark some additional deprecated functions.
1571 * Bug and Portability fixes
1572
1573
1574 Overview of Changes in GLib 1.3.4:
1575 ==================================
1576
1577 * Efficiency improvements for GThreadPool
1578 * A few bug fixes
1579 * Build fixes
1580 * Documentation improvements
1581
1582
1583 Overview of Changes in GLib 1.3.3:
1584 ==================================
1585
1586 GLib:
1587
1588 * More user_data support in various functions.
1589 * Main loop API revamps to support per-thread main loops.
1590 * Unicode handling improvements.
1591 * Implemented debugging traps.
1592 * G_CONST_RETURN specification all over the place.
1593 * Various new small utility functions.
1594 * Random number generator precision improvements.
1595 * New configure option --disable-mem-pools.
1596 * Many Win32 improvements.
1597 * Added g_try_malloc() friends varinats.
1598 * Many documentation improvements.
1599 * Many threading improvements, support for dynamic allocation
1600   of static mutexes.
1601 * GHookLIst API cleanups.
1602 * Improved format support of GDate parser.
1603 * String function speed improvements with new g_stpcpy().
1604 * Hashtable API additions.
1605 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
1606 * Optimizations, cleanups, bug fixes.
1607
1608 GObject:
1609
1610 * Added many convenience functions.
1611 * GClosure and GParamSpec use float/sink ref-counting scheme now.
1612 * Reworked property change notification.
1613 * Binary searchable array cleanups, so it's widely usable now.
1614 * Added static content keeping for some GValue types.
1615 * Support for statically scoped signal parameters.
1616 * Extinguished property trailer args in set/get interface.
1617 * Added support for abstract types.
1618 * G_CONST_RETURN specification all over the place.
1619 * Split parameter exchange functionality into value transforms
1620   and parameter conversions.
1621 * Added signal emission hooks and signal accumulators.
1622 * Added interface prerequisites to support is_a (interface, object)
1623   relations.
1624 * Implemented GValueArray.
1625 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
1626   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
1627   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
1628 * Varrags value collection improvements.
1629 * Implemented debugging traps.
1630 * Made things thread-safe.
1631 * Many documentation improvements.
1632 * Many cleanups, optimizations and bug fixes.
1633
1634
1635 Overview of Changes in GLib 1.3.2:
1636 ==================================
1637
1638 GLib:
1639
1640 * Win32 build improvements  [Tor]
1641 * Improvements to error reporting  
1642   (g_critical(), g_return_if_reached()) [Darin]
1643 * Add g_strlcpy/g_strlcat  [David Wheeler]
1644 * New IO channel implementation for Win32  [Tor] 
1645 * Make g_array_free, g_string_free return pointer to memory requested
1646   not to be freed.  [Darin]
1647 * Added GError based error reporting for thread functions.  [Sebastian]
1648 * Moved reference docs into GLib distribution. [Owen]
1649 * Added g_convert() for doing convenient character set conversions based
1650   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
1651 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
1652   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
1653 * Portability fixes for threading.  [Sebastian]
1654 * Added convenient functions for launching new processes (g_spawn_*),
1655   and shell quoting/unquoting functions.  [Havoc]
1656 * Split glib.h into many headers.  [Sebastian]
1657 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
1658 * Fixed confusions between comparison functions that return <0, 0, >0
1659   and equaility functions that return FALSE,TRUE.  [Sebastian]
1660 * Added safe/portable temporary file manipulation functions.  [Tor]
1661 * autoconf improvements.  [Raja]
1662 * Many documentation improvements.
1663 * Bug fixes.
1664
1665 GObject:
1666
1667 * Added boxed and pointer types.  [Tim/Jonathan]
1668 * Added callback abstraction (GClosure)  [Tim]
1669 * Added signal system (GSignal)  [Tim]
1670 * Make GTypePlugin an interface  [Tim]
1671 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
1672 * Bug fixes.
1673
1674
1675 What's new in GLib 1.3.1:
1676 =========================
1677
1678 * New GObject library added including object system based on
1679   the GTK+ object system. 
1680 * Functions for getting the properties of Unicode characters, 
1681   computing the canonical decomposition and ordering combining
1682   characters aand manipulating UTF-8 string manipulation based
1683   on libunicode.
1684 * GString now properly handles embedded nuls.
1685 * Multiple fixes from the 1.2.x branch.
1686 * Upgrade to libtool 1.3.3
1687 * Full thread support (thread creation and destruction).
1688 * BeOS port, BeOS dynamic modules.
1689 * Many improvements to the Windows ports.
1690 * Improvements to the OS/2 port, OS/2 module support.
1691 * Double ended queue implementation.
1692 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
1693 * New configure option --enable-msg-prefix to prefix messages, warnings
1694   et ceteri with the program name and the process id.
1695 * New thread-safe random number generator Mersenne Twister.
1696 * g_strcompress() added, g_strescape() had a slight API change, and
1697   more tightly defined semantics.
1698 * the g_string(x) macro has been removed, #x may be used instead.
1699