Revert "codegen: Don't implicitly initialize local variables with an initializer"
[vala-gnome.git] / NEWS
blob5cb3c8b3b625a9ae39c12eb231470b069990c4a3
1 Vala 0.36.2
2 ===========
3  * Various bug fixes:
4   - Enums require at least one value otherwise report an error
6  * Bindings:
7   - gstreamer-1.0: Update to 1.11.90+
8   - gio-2.0: Fix GLib.Task constructor and report_error/report_new_error()
9   - glib-2.0: Add quark() functions to errordomains,
10       Add missing version macro and constants,
12 Vala 0.36.1
13 ===========
14  * Various bug fixes:
15   - Always consider a method compatible with itself [#773135]
16   - Perform arguments-check against actual .end() method-signature [#684208]
17   - Slightly improve lamdba-expression error on target-type mismatch
18   - Fix delegate initializer for instance fields [#683925]
19   - Don't leak target-reference when casting/assigning owned delegates [#780426]
21  * GIR parser and writer:
22   - girparser: Add destroy argument for metadata [#750838]
23   - vapigen: Add --nostdpkg option like in valac
25  * Bindings:
26   - gstreamer-1.0: Fix Pad.set_*_function() bindings [#750838]
27   - glib-2.0: Add missing version macro and constants,
28       unichar.to_string doesn't return null
29   - gtk+-2.0,gtk+-3.0: Mark "intersection" param of Widget.intersect() as out
30   - gtk+-4.0: Update to 3.90.0
32 Vala 0.36.0
33 ===========
35  * Highlights
36   - Update manual using DocBook from wiki.gnome.org as source [#779090]
37   - Add support for array-parameters with rank > 1 in signals [#778632]
38   - Use GTask instead of GSimpleAsyncResult with GLib 2.36/2.44 target [#763345]
39   - Deny access to protected constructors [#760031]
40   - Support [DBus (signature = ...)] for properties [#744595]
41   - Add [CCode ("finish_instance = ...")] attribute [#710103]
42   - Support [HasEmitter] for vala sources [#681356]
43   - Add support for the \v escape charactor [#664689]
44   - Add explicit copy method for arrays [#650663]
45   - Allow underscores in type parameter names [#644938]
46   - Support [FormatArg] attribute for parameters
47   - Ignore --thread commandline option and drop gthread-2.0 references
48   - Check inferred generic-types of MemberAccess [#775466]
49   - Check generic-types count of DelegateType [#772204]
50   - Fix type checking when using generics in combination with subtype [#615830]
51   - Fix type parameter check for overriding generic methods
52   - Use g_signal_emit where possible [#641828]
53   - Only emit notify of properties if value actually changed [#631267] [#779955]
54   - Mark chained relational expressions as stable [#677022]
55   - Perform more thorough compatibility check of inherited properties [#779038]
56   - Handle nullable ValueTypes in signals delegates properly [#758816]
58  * New bindings:
59   - gtk+-4.0, gtk+-unix-print-{2,3,4}.0, libgrss
61  * Removed bindings:
62   - clutter-json-1.0
64  * Updated bindings. Some fixes may need to be wrapped in your Vala code
65    with the preparser directive #if VALA_0_36
66   - cairo: Add bindings for cairo_*_user_data()
67   - clutter-1.0: Fix constructors which weren't detected as such
68   - clutter-gst-2.0: Skip VideoTexture.get_audio_streams/get_subtitle_tracks
69   - clutter-gst-3.0: Three commits
70   - gdk-2.0: Include gdk/gdkkeysyms.h for Gdk.Key
71   - gdk-3.0: Three commits
72   - gdk-pixbuf-2.0: Three commits
73   - gobject-introspection-1.0: Prettify and fix the whole thing
74   - gsl.vapi: Fix attribute typos
75   - gstreamer-1.0: Make ElementFactory.get_static_pad_templates fully "unowned",
76       Mark *.make_writable with "ReturnsModifiedPointer",
77       Fix Gst.Base.Adapter.map/take bindings
78   - gtk+-3.0: Various updates
79   - gtk+-X.0: Mark "iter" param of ListStore.remove() as ref
80   - libarchive: Add ReadDisk
81   - libxml-2.0: Adding missing API and nullable parameters
82   - linux: add non-posix fcntl constants
83   - polkit-gobject-1: Fix constructors which weren't detected as such
84   - poppler-glib: Update to 0.52.0
85   - rest-0.7: Fix some ownership problems
86   - sdl: Make Palette and PixelFormat a struct
87   - webkit2gtk-4.0: Update to 2.16
88   - webkit2gtk: URI*.get_http_headers returns unowned Soup.MessageHeaders
90  * Updated GLib core bindings:
91   - gio-2.0:
92     + Fix async constructors of DBusConnection,DBusObjectManagerClient...
93     + Fix binding of Resolver.lookup_service*()
94     + Keep GLib.Socket API compatible with gio < 2.48
95     + Update SettingsBackend related bindings
96     + Add/"Unlock" missing GTask symbols
97   - gio-unix-2.0:
98     + Add "g_unix_mounts_for" and fix "g_unix_mount_at"
99   - glib-2.0:
100     + Add GPOINTER_TO_* as from_pointer()
101     + Add G_CHECKSUM_SHA384
102     + Add "g_utf8_make_valid"
103     + Add more Error bindings
104     + Add simple fast-path to string.replace()
105     + Add UCS-4 and UTF-16 related bindings
106     + Add uuid_string_*
107     + Fix g_bookmark_file_load_from_*/to_file bindings
108     + Mark delegates in Test.add_data_func/add_func() as scope=async
109     + Mark va_list.arg() with simple-generics to allow int64 or double
110     + Update Unicode symbols
111   - gobject-2.0:
112     + Add a bunch of missing symbols
113     + Add some missing "array_length_type" annotations
115  * GIR parser and writer:
116   - Add [GIR ("fullname = ...")] attribute, set fullname of GType [#775591]
117   - More complete parsing of field information [#772902]
118   - Use the correct tag- and element-name for an annotation [#769597]
119   - Use type_id information from gir if not already overridden
120   - No support for fixed-size array as return-value
121   - Let alias inherit more information from base_type
122   - Improve function to method conversion
123   - Avoid fatal handling of nameless unions
124   - Allow to specify the base_type of an alias
125   - Add metadata-support for "returns_modified_pointer" [#759255]
127  * D-Bus code generation:
128   - Check there is a return error location before using it [#779652]
129   - Fix memory-leak using g_task_propagate_pointer [#778993]
130   - Initialize intermediate variables [#778540]
131   - Handle errors when extracting FDs from dbus messages [#778540]
132   - Ensure extracted data from the GVariant is freed on error [#778540]
134  * C code hardening and reproducibility:
135   - Fix build with -Werror=enum-compare -Werror=switch
136   - Build testsuite with -Werror=format-nonliteral -Werror=format-security
137       -Werror=int-conversion -Werror=redundant-decls
138   - Add G_GNUC_FORMAT attribute for FormatArg functions [#774060]
139   - Add G_GNUC_PRINTF/SCANF attribute for Printf/ScanfFormat functions [#710862]
140   - gtkmodule: Order required-gtype-classes for reproducibility [debian#802528]
142  * Reduce incompatible-pointer-type C code warnings:
143   - Cast vfunc pointer assigns of abstract overrides [#777958]
144   - Fix vfunc cast for async method implementation/override
145   - Default to void-return for vfunc cast of *_async methods
146   - Cast *_destroy_func of generic-types calls to GDestroyNotify
147   - Cast destroy_data for g_cclosure_new to GClosureNotify
148   - Pass pointer of matching type to property-getter
149   - memberaccess: Don't resolve base_method/property twice
151  * Genie:
152   - Allow comma-separated identifiers in definition of enums [#776833]
153   - Add empty file check to read_token() [#633083]
155  * Various bug fixes:
156   - codegen: Don't create duplicated complete-async code [#778302]
157   - codegen: Don't return void for non-nullable simple-type structs [#778224]
158   - vala: Non-null initializers not allowed for owned namespace fields [#777697]
159   - codegen: Support casting arbitary value-types to arrays [#777194]
160   - codegen: Reference struct fields with their actual cname [#775761]
161   - codegen: Add function-prototypes for all register-type calls [#775446]
162   - vala: check a property has an accessor and/or a mutator [#773956]
163   - codegen: Don't declare CreationMethod for compact-classes twice [#772661]
164   - method: Print encountered type if return types mismatch [#769501]
165   - codegen: Fix memory-leak with object initializer for properties [#766739]
166   - codegen: Fix array length of array returned by lambda [#761360]
167   - codegen: Fix emission of constant array length [#756376]
168   - codegen: Support deprecating properties and their accessors [#732449]
169   - codegen: Don't add static modifier to abstract property setters [#673389]
170   - codegen: Fix instance parameter property setter in SimpleType structs
171     [#657346]
172   - codegen: Fix base-access from within overriding struct-property-accessor
173     [#764481]
174   - vala: Check accessibility of default arguments [#648030]
175   - vala: Disallow private accessors in overridable properties [#603491]
176   - methodcall: Don't try to remove N_/NC_ while properly handled in C [#642350]
177   - vala: Check type arguments in DataType.equals [#641418]
178   - parser: Allow cast pointer expressions without enclosing parens [#590641]
179   - Don't initialize local variable if not requested
180   - codegen: Don't implicitly initialize local variables with initializer
181   - Check printf arguments of object creation expressions
182   - ccodefunction: Only add G_GNUC_DEPRECATED to declarations
183   - codegen: Avoid criticals while unconditionaly trying to chain-up to
184     non-existing property-accessors
185   - signalmodule: Add signal-emitter declaration if needed [#779609]
186   - signalmodule: Fix deprecation of signals
187   - codegen: Properly null-out source on ownership-transfer of delegates
188   - vala: Fix MemberAccess.is_non_null() for EnumValue constants [#780050]
190  * Contributors:
191     Abderrahim Kitouni, Alistair Thomas, Andrea Del Signore, Carlos Garnacho,
192     Daniel Espinosa, Daniel Pfeifer, Dr. Michael Lauer, Evan Nemerson,
193     Florian Brosch, Francisco Serna, George Barrett, Jens Georg, Jordan Yelloz,
194     Jürg Billeter, Luca Bruno, Marvin W, Matthias Berndt, Michael James Gratton,
195     mrmacete, Nikolay Orlyuk, Niko Tyni, Ole André Vadla Ravnås,
196     Philip Withnall, Richard Wiedenhöft, Rico Tzschichholz, Sam Thursfield,
197     Severin Heiniger, Simon Werbeck, Timm Bäder, Vladislav, Yu Feng
199 Vala 0.34.0
200 ===========
202  * Bug fixes and binding updates.
204 Vala 0.33.1
205 ===========
207  * Bug fixes and binding updates.
209 Vala 0.32.0
210 ===========
212  * Bug fixes and binding updates.
214 Vala 0.31.1
215 ===========
217  * Introduce [Version] attribute.
218  * Require and target GLib >= 2.32.
219  * Bug fixes and binding updates.
221 Vala 0.30.0
222 ===========
224  * Binding updates.
226 Vala 0.29.3
227 ===========
229  * Add --shared-library option for GIR files.
230  * Bug fixes and binding updates.
232 Vala 0.29.2
233 ===========
235  * Bug fixes and binding updates.
237 Vala 0.29.1
238 ===========
240  * Binding updates.
242 Vala 0.28.0
243 ===========
245  * Binding updates.
247 Vala 0.27.2
248 ===========
250  * Bug fixes and binding updates.
252 Vala 0.27.1
253 ===========
255  * Print compiler messages in color.
256  * Add clutter-gdk-1.0 bindings.
257  * Add clutter-gst-3.0 bindings.
258  * Add clutter-x11-1.0 bindings.
259  * Add rest-extras-0.7 bindings.
260  * Bug fix and binding updates.
262 Vala 0.26.0
263 ===========
265  * Bug fix and binding updates.
267 Vala 0.25.4
268 ===========
270  * Add option --vapi-comments.
271  * Bug fixes and binding updates.
273 Vala 0.25.3
274 ===========
276  * Bug fixes and binding updates.
278 Vala 0.25.2
279 ===========
281  * Require and target GLib >= 2.24.
282  * Report warning for private struct fields.
283  * Replace webkit2gtk-3.0 bindings with webkit2gtk-4.0 bindings.
284  * Always build vapigen.
285  * Bug fixes and binding updates.
287 Vala 0.25.1
288 ===========
290  * Support explicit interface method implementation.
291  * Support (unowned type)[] syntax.
292  * Support non-literal length in fixed-size arrays.
293  * Mark regular expression literals as stable.
294  * GIR parser updates.
295  * Add webkit2gtk-3.0 bindings.
296  * Add gstreamer-allocators-1.0 and gstreamer-riff-1.0 bindings.
297  * Bug fixes and binding updates.
299 Vala 0.24.0
300 ===========
302  * Bug fixes and binding updates.
304 Vala 0.23.3
305 ===========
307  * Bug fixes and binding updates.
309 Vala 0.23.2
310 ===========
312  * Bind GDK event structures as compact classes.
313  * Switch gdk-x11-3.0 bindings to .gir.
314  * Switch librsvg-2.0 bindings to .gir.
315  * Bug fixes and binding updates.
317 Vala 0.23.1
318 ===========
320  * GIR parser updates.
321  * Switch libnotify bindings to .gir.
322  * Add libpeas-gtk-1.0 bindings.
323  * Add xcb-icccm bindings.
324  * Bug fixes and binding updates.
326 Vala 0.22.0
327 ===========
329  * Support chain up to constructv functions.
330  * Bug fixes and binding updates.
332 Vala 0.21.2
333 ===========
335  * Recognize ref/unref functions in .gir files.
336  * Add geocode-glib bindings.
337  * Bug fixes and binding updates.
339 Vala 0.21.1
340 ===========
342  * Support \uXXXX escape sequences.
343  * Support specifying vfunc order in interfaces to define ABI.
344  * Support GTK+ widget templates.
345  * Bug fixes and binding updates.
347 Vala 0.20.1
348 ===========
350  * Bug fixes.
352 Vala 0.20.0
353 ===========
355  * Bug fixes and binding updates.
357 Vala 0.19.0
358 ===========
360  * Support scope = "async" attribute for parameters.
361  * Add --api-version option.
362  * Add atspi-2 bindings.
363  * Add gstreamer-rtsp-server-1.0 bindings.
364  * Bug fixes and binding updates.
366 Vala 0.18.0
367 ===========
369  * Bug fixes.
371 Vala 0.17.7
372 ===========
374  * Add libgnome-menu-3.0 bindings.
375  * Bug fixes and binding updates.
377 Vala 0.17.6
378 ===========
380  * Bug fixes and binding updates.
382 Vala 0.17.5
383 ===========
385  * Support subclassing of GLib.Source.
386  * Switch pango bindings to .gir.
387  * Add gstreamer-1.0 core bindings.
388  * Add gst-plugins-base-1.0 bindings.
389  * Add gobject-introspection-1.0 bindings.
390  * Bug fixes and binding updates.
392 Vala 0.17.4
393 ===========
395  * Warn when accessing static members with an instance reference.
396  * Recompute length when casting between array types.
397  * Support [GenericAccessors] attribute for interfaces.
398  * Deprecate implicit .begin for async methods.
399  * Drop Dova profile.
400  * Drop POSIX profile.
401  * Bug fixes and binding updates.
403 Vala 0.17.3
404 ===========
406  * Require and target GLib >= 2.18.
407  * Support async creation methods.
408  * Bug fixes and binding updates.
410 Vala 0.17.2
411 ===========
413  * Bug fixes and binding updates.
415 Vala 0.17.1
416 ===========
418  * Improve assertion messages.
419  * Add --enable-gobject-tracing commandline option.
420  * Bug fixes and binding updates.
422 Vala 0.17.0
423 ===========
425  * Support simple method-level profiling.
426  * Add VALA_CHECK_MODULES and VALA_PROG_VAPIGEN to vala.m4.
427  * Bug fixes and binding updates.
429 Vala 0.16.0
430 ===========
432  * Add udisks2 bindings.
433  * Bug fixes and binding updates.
435 Vala 0.15.2
436 ===========
438  * Switch poppler-glib bindings to .gir.
439  * Many bug fixes and binding updates.
441 Vala 0.15.1
442 ===========
444  * Support arrays with nullable elements.
445  * Add <doc> support to .gir reader and writer.
446  * Switch clutter-gtk-1.0 bindings to .gir.
447  * Switch gio-2.0 bindings to .gir.
448  * Add cogl-pango-1.0 bindings.
449  * Add gdl-3.0 bindings.
450  * Add libnl-3.0 bindings.
451  * Add packagekit-glib2 bindings.
452  * Add xtst bindings.
453  * Many bug fixes and binding updates.
455 Vala 0.15.0
456 ===========
458  * Manage memory of GQueue elements.
459  * Switch atk bindings to .gir.
460  * Switch gdk-pixbuf-2.0 bindings to .gir.
461  * Switch gdk-3.0 bindings to .gir.
462  * Add libwnck-3.0 bindings.
463  * Many bug fixes and binding updates.
465 Vala 0.14.0
466 ===========
468  * Bug fixes and binding updates.
470 Vala 0.13.4
471 ===========
473  * Switch gudev-1.0 bindings to .gir.
474  * Switch mx-1.0 bindings to .gir.
475  * Many bug fixes and binding updates.
477 Vala 0.13.3
478 ===========
480  * Switch pangocairo bindings to .gir.
481  * Bug fixes.
483 Vala 0.13.2
484 ===========
486  * Enable flow analysis for out parameters.
487  * Refactor attribute handling.
488  * Add gedit-3.0 bindings.
489  * Add gtksourceview-3.0 bindings.
490  * Add rest-0.7 bindings.
491  * Add vte-2.90 bindings.
492  * Switch clutter-1.0 bindings to .gir.
493  * Switch libgdata bindings to .gir.
494  * Switch libsoup bindings to .gir.
495  * Many bug fixes and binding updates.
497 Vala 0.13.1
498 ===========
500  * Many bug fixes and binding updates.
502 Vala 0.13.0
503 ===========
505  * More refactoring in the code generator.
506  * Improvements to the .gir reader.
507  * Switch JSON-GLib bindings to .gir.
508  * Drop deprecated support for D-Bus GLib in favor of GDBus.
509  * Many bug fixes and binding updates.
511 Vala 0.12.0
512 ===========
514  * Add get_next_char to string class.
515  * Many bug fixes and binding updates.
517 Vala 0.11.7
518 ===========
520  * Add support for async signal handlers (Frederik Sdun).
521  * More refactoring in the code generator (Luca Bruno).
522  * Improvements to the .gir writer (Michal Hruby).
523  * Many bug fixes and binding updates.
525 Vala 0.11.6
526 ===========
528  * Add parse and try_parse methods to boolean and numeric types.
529  * Add clutter-gtk-1.0 bindings.
530  * Add pixmap-1 bindings (Evan Nemerson).
531  * Many bug fixes and binding updates.
533 Vala 0.11.5
534 ===========
536  * Add last_index_of and last_index_of_char to string class.
537  * More refactoring in the code generator (Luca Bruno).
538  * Improvements to the .gir writer (Michal Hruby).
539  * Many bug fixes and binding updates.
541 Vala 0.11.4
542 ===========
544  * Add index_of, index_of_char, and char_count to string class.
545  * Many bug fixes and binding updates.
547 Vala 0.11.3
548 ===========
550  * Support BusName sender parameter in GDBus servers.
551  * More refactoring in the code generator.
552  * Many bug fixes and binding updates.
554 Vala 0.11.2
555 ===========
557  * Update libnotify bindings to 0.7.0.
558  * Improvements to the .gir reader.
559  * Bug fixes and binding updates.
561 Vala 0.11.1
562 ===========
564  * Require and target GLib >= 2.16.
565  * Guard access to out parameters to allow null arguments.
566  * Add support for local constants.
567  * Support file descriptor passing with GDBus.
568  * Support cached property values in GDBus clients.
569  * Support Cancellable parameter in GDBus clients.
570  * Support no-reply methods in GDBus clients and servers.
571  * More refactoring in the code generator.
572  * Many bug fixes and binding updates.
574 Vala 0.11.0
575 ===========
577  * Use byte indices for strings.
578  * Use uint8[] for binary data in bindings.
579  * Add support for parallel compilation.
580  * Improve compiler performance.
581  * More refactoring in the code generator.
582  * Many bug fixes and binding updates.
584 Vala 0.10.0
585 ===========
587  * Port GIR parser and writer to GIR version 1.2.
588  * Update GLib bindings to 2.26 branch.
589  * Bug fixes.
591 Vala 0.9.8
592 ==========
594  * Add --fatal-warnings commandline option.
595  * Deprecate string.len () in favor of string.length.
596  * Deprecate use of D-Bus GLib in favor of GDBus.
597  * Many bug fixes and binding updates.
599 Vala 0.9.7
600 ==========
602  * Fix regression introduced by codegen refactoring.
604 Vala 0.9.6
605 ==========
607  * Drop deprecated support for assigning to construct properties.
608  * Some refactoring in the code generator.
609  * Bug fixes in bindings and vapigen.
611 Vala 0.9.5
612 ==========
614  * Add version suffix to support parallel installation.
615  * Define VALA_X_Y according to compiler version.
616  * Enable version header by default.
617  * Add vala.m4 with VALA_CHECK_PACKAGES macro.
618  * Add gedit-2.20 bindings (Andrea Del Signore).
619  * Add tokyocabinet bindings (Evan Nemerson).
620  * Various improvements to the Dova profile.
621  * Many bug fixes and binding updates.
623 Vala 0.9.4
624 ==========
626  * Append documentation comments to generated C files.
627  * Skip <doc> tags in .gir files.
628  * Various improvements to the Dova profile.
629  * Many bug fixes and binding updates.
631 Vala 0.9.3
632 ==========
634  * Support newlines in double quoted string literals.
635  * Add experimental support for main blocks.
636  * Add experimental vala tool to compile and run code.
637  * Initial support for generic delegates.
638  * Support using GClosure for delegate parameters.
639  * Support GBoxed-based memory management.
640  * Improvements to the .gir reader and writer.
641  * Various improvements to the Dova profile.
642  * Many bug fixes and binding updates.
644 Vala 0.9.2
645 ==========
647  * Initial support for GDBus-based clients and servers.
648  * Support implicit and explicit GVariant casts.
649  * Add support for [Deprecated] attribute.
650  * Add GenericArray as alternative binding to GPtrArray.
651  * Add gdk-pixbuf-3.0, gdk-3.0, gdk-x11-3.0, and gtk+-3.0 bindings.
652  * Updates to the GLib bindings.
653  * Many bug fixes.
655 Vala 0.9.1
656 ==========
658  * Support constants in enums.
659  * Deprecate +=/-= syntax to connect/disconnect signal handlers.
660  * Add experimental support for Dova profile.
661  * Update Genie parser (Jamie McCracken).
662  * Add clutter-gst-1.0 bindings (Ali Sabil).
663  * Add gdu and gdu-gtk bindings.
664  * Add libesmtp bindings (Adrien Bustany).
665  * Add mx-1.0 bindings (Evan Nemerson).
666  * Add orc-0.4 bindings (Fabian Deutsch).
667  * Add rest-extras-0.6 bindings (Adrien Bustany).
668  * Updates to the GLib, GStreamer, Linux, SQLite, and other bindings.
669  * Many bug fixes.
671 Vala 0.8.0
672 ==========
674  * Infer type arguments when calling generic methods.
675  * Support `in' operator for arrays.
676  * Add experimental support for regular expression literals.
677  * Add experimental support for chained relational expressions.
678  * Add va_list support.
679  * Add clutter-gtk-0.10 bindings (Gordon Allott).
680  * Add gdl-1.0 bindings (Nicolas Joseph).
681  * Add gstreamer-app-0.10 bindings (Sebastian Dröge).
682  * Add gstreamer-cdda-0.10 bindings (Sebastian Dröge).
683  * Add gudev-1.0 bindings (Jim Nelson).
684  * Add libgda-report-4.0 bindings (Shawn Ferris).
685  * Add libgvc (graphviz) bindings (Martin Olsson).
686  * Add purple bindings (Adrien Bustany).
687  * Many bug fixes and binding updates.
689 Vala 0.7.10
690 ===========
692  * Support coalescing operator ??.
693  * Support to_string and bitwise complement with enums.
694  * Return handler id when connecting signal handlers.
695  * Support struct comparison.
696  * Support constructor chaining in structs.
697  * Enforce protected member restrictions.
698  * Improve performance of flow analysis.
699  * Support automatic line continuations in Genie.
700  * Improvements to the .gir reader and writer.
701  * Add --enable-mem-profiler commandline option.
702  * Many bug fixes and binding updates.
704 Vala 0.7.9
705 ==========
707  * Support array and string slicing.
708  * Add --symbols commandline option.
709  * Add avahi-gobject bindings (Sebastian Noack).
710  * Add ccss-1 bindings (Ali Sabil).
711  * Add libarchive bindings (Julian Andres Klode).
712  * Add libmagic bindings (Jens Georg).
713  * Add readline bindings (Jukka-Pekka Iivonen).
714  * Add twitter-glib-1.0 bindings (Adrien Bustany).
715  * Many bug fixes and binding updates.
717 Vala 0.7.8
718 ==========
720  * Support constructor chain up to GObject using Object (...).
721  * Add syntax for string templates.
722  * Support (!) non-null casts.
723  * Many bug fixes and binding updates.
725 Vala 0.7.7
726 ==========
728  * Support `using' directives inside namespaces.
729  * Use const only for immutable structs.
730  * Support string marshalling for enums in D-Bus (Didier Ptitjes).
731  * Update Genie parser (Jamie McCracken).
732  * Add libgda-4.0 bindings (Shawn Ferris).
733  * Many bug fixes for closures and async methods.
735 Vala 0.7.6
736 ==========
738  * Add support for closures.
739  * Improve support for asynchronous methods.
740  * Support async methods in D-Bus servers.
741  * Add clutter-1.0 bindings (Rob Taylor).
742  * Add GVariant, GSettings, and dconf bindings (Ryan Lortie).
743  * Add linux, libnl-1, and libasound bindings (Michael 'Mickey' Lauer).
744  * Add gnutls bindings (Jiří Zárevúcky).
745  * Add librest bindings (Adrien Bustany).
746  * Many bug fixes and binding updates.
748 Vala 0.7.5
749 ==========
751  * Add support for static properties.
752  * Add support for delegate properties.
753  * Support virtual default handler for signals.
754  * Add limited support for derived compact classes.
755  * Add libgdata bindings (Víctor Manuel Jáquez Leal).
756  * Add libusb-1.0 bindings (Evan Nemerson).
757  * Many bug fixes and binding updates.
759 Vala 0.7.4
760 ==========
762  * Add support for array properties.
763  * Support implicit and explicit GValue casts.
764  * Add initial support for generic methods.
765  * Add postgres bindings.
766  * Many bug fixes and binding updates.
768 Vala 0.7.3
769 ==========
771  * Add initial support for POSIX profile.
772  * Add --vapi and --gir commandline options.
773  * Add initial x11, xcb, and cairo-xcb bindings.
774  * Many bug fixes and binding updates.
776 Vala 0.7.2
777 ==========
779  * Improvements to the .gir reader and writer (Didier Ptitjes).
780  * Many bug fixes and binding updates.
782 Vala 0.7.1
783 ==========
785  * Introduce new syntax to connect/disconnect signal handlers.
786  * Add experimental support for fixed-length arrays.
787  * Update Genie parser (Jamie McCracken).
788  * Updates to the GLib, Cairo, GTK+, GStreamer, and POSIX bindings.
789  * Many bug fixes.
791 Vala 0.7.0
792 ==========
794  * Do not generate header files unless requested by the -H commandline
795    option. This requires changes in the build system of Vala projects.
796  * Support conditional compilation.
798 Vala 0.6.0
799 ==========
801  * Improvements to the .gir reader and writer (Didier Ptitjes).
802  * Add librsvg-2.0 bindings (Evan Nemerson).
803  * Add Maemo libosso bindings (Jukka-Pekka Iivonen).
804  * Add V4L2 bindings (Matías De la Puente).
805  * Many bug fixes.
807 Vala 0.5.7
808 ==========
810  * Support signals in static D-Bus clients.
811  * Various improvements to asynchronous method support (Ryan Lortie).
812  * Report unused internal methods.
813  * Extend POSIX bindings.
814  * Add FUSE bindings (John Carr).
815  * Add libdaemon bindings (Jukka-Pekka Iivonen).
816  * Many bug fixes.
818 Vala 0.5.6
819 ==========
821  * Do not require libgee for custom indexer access.
822  * Add Log.FILE, Log.LINE, and Log.METHOD constants.
823  * Various improvements to the .gir reader.
824  * Add Lua bindings (pancake and Phil Housley).
825  * Add MySQL bindings (Jukka-Pekka Iivonen).
826  * Add partial POSIX bindings.
827  * Many bug fixes.
829 Vala 0.5.5
830 ==========
832  * Improve syntax of owned property getters.
833  * Add --enable-deprecated and --enable-experimental commandline options.
834  * Remove --disable-non-null commandline option.
835  * Many bug fixes.
837 Vala 0.5.4
838 ==========
840  * Support array initializers as expressions.
841  * Support += to efficiently append elements to arrays.
842  * Calculate length for null-terminated arrays.
843  * Support initializers for multi-dimensional arrays.
844  * Add `owned' keyword to replace `#'.
845  * Various fixes in coroutine support.
846  * Support boxed structs as GObject properties.
847  * Many bug fixes.
849 Vala 0.5.3
850 ==========
852  * Rewrite D-Bus server support to directly use libdbus.
853  * Register structs as boxed types.
854  * Improve error reporting on invalid code.
855  * Support private class fields and class destructors.
856  * Add partial raptor and rasqal bindings.
857  * Drop vala-gen-project, moved to vtg.
858  * Many bug fixes.
860 Vala 0.5.2
861 ==========
863  * Report uninitialized local variables.
864  * Report unused fields, methods, and local variables.
865  * Fix error handling in complex statements.
866  * Improve support for generic types.
867  * Support parameter arrays in bindings.
868  * Do not require libgee for foreach statements.
869  * Support enums in D-Bus clients and servers.
870  * Support structs in hash tables in D-Bus servers.
871  * Experimental static D-Bus client support.
872  * Add --dump-tree commandline option to write code tree to file.
873  * Many bug fixes.
875 Vala 0.5.1
876 ==========
878  * Support type checks for error domains and error codes.
879  * Experimental support for yield statements and coroutines.
880  * Support GValue and GHashTable in D-Bus clients.
881  * Various improvements to the .gir reader.
882  * Drop deprecated support for static classes.
883  * Modularize code generator.
884  * Many bug fixes.
886 Vala 0.4.0
887 ==========
889  * Support more flexible constructors.
890  * Partial support for reading and writing .gir files.
891  * Improve compiler performance.
892  * Copy arrays where necessary.
893  * Basic support for static properties.
894  * Partial support for struct holding object references.
895  * Add tracker indexer bindings (Roberto Majadas)
896  * Updates to the GLib, GTK+, and GStreamer bindings.
897  * Many bug fixes.
899 Vala 0.3.5
900 ==========
902  * Notify on property changes by default (Jared Moore)
903  * Add unique-1.0 bindings (Phil Housley)
904  * Updates to the GLib, GTK+, and GStreamer bindings.
905  * Many bug fixes.
907 Vala 0.3.4
908 ==========
910  * Various improvements to D-Bus client and service support.
911  * Basic support for detailed signals.
912  * Check types of printf arguments.
913  * Support `in' operator for Gee.Collection and Gee.Map (Jamie McCracken)
914  * Add libgsf-1 bindings (Michael Lawrence)
915  * Add loudmouth-1.0 bindings (Ali Sabil)
916  * Updates to the GLib, GTK+, and GStreamer bindings.
917  * Many bug fixes.
919 Vala 0.3.3
920 ==========
922  * Support overriding default method handlers of signals.
923  * Support dynamic access to properties and signals of GObjects.
924  * Experimental support for nullable value types.
925  * Improve support for classes not deriving from GLib.Object.
926  * Support """verbatim strings""".
927  * Add parser for Genie (Jamie McCracken)
928  * Experimental support for arrays of arrays.
929  * Documentation improvements (Phil Housley)
930  * Improvements to D-Bus support (Ali Sabil, Philip Van Hoof, Yu Feng)
931  * Add libepc-1.0 bindings (Ali Sabil)
932  * Add libtiff bindings (Christian Meyer)
933  * Updates to the GStreamer bindings (Ali Sabil and Jaap A. Haitsma)
934  * Many bug fixes and performance improvements.
936 Vala 0.3.2
937 ==========
939  * Add support for class constructors, class fields, and class methods.
940  * Various improvements to methods in D-Bus services.
941  * Add support for properties and signals in D-Bus services (Yu Feng)
942  * Add Time API to GLib bindings.
943  * Documentation improvements (Phil Housley)
944  * Updates to the GLib and GTK+ bindings.
945  * Many bug fixes.
947 Vala 0.3.1
948 ==========
950  * Enable non-null types by default.
951  * Add --disable-non-null commandline option.
952  * New handwritten parser.
953  * Support virtual methods in interfaces.
954  * Add `dynamic' type modifier for D-Bus client support.
955  * Add experimental support for writing D-Bus services.
956  * Don't require `new' operator for structs.
957  * Warn when using deprecated syntax.
958  * Add libsexy bindings (Evan Nemerson)
959  * Updates to the GLib and GTK+ bindings.
960  * Many bug fixes.
962 Vala 0.2.0
963 ==========
965  * Support nested namespaces.
966  * Support static constructors.
967  * Register enums with GType (Marc-André Lureau)
968  * Small syntax change for default values of properties.
969  * Add --verbose commandline option (Daniel Silverstone)
970  * Improve pointer support.
971  * Add GNOME Keyring bindings (Andrea Del Signore)
972  * Add SDL bindings (Levi Bard)
973  * Add libftdi bindings (Evan Nemerson)
974  * Updates to the GLib, GTK+, GStreamer, and SQLite bindings.
975  * Many bug fixes all over the place.
977 Vala 0.1.7
978 ==========
980  * Support private property accessors.
981  * Support default values for properties.
982  * Improve support for array length and delegate target parameters.
983  * Improve delegate and signal handler support.
984  * Introduce new syntax to declare errordomains.
985  * Improve exception support.
986  * Report errors for missing return statements.
987  * Report warnings for unreachable code.
988  * Improve support for generic types.
989  * Support pointer member access and pointer element access.
990  * Support pointer arithmetic.
991  * Add --quiet commandline option (Emmanuele Bassi)
992  * Add WebKit bindings.
993  * Add JSON-GLib bindings (Ali Sabil)
994  * Add goocanvas bindings (Roberto Majadas)
995  * Add hildon-fm-2 bindings (Levi Bard)
996  * Add taglib bindings (Andreas Brauchli)
997  * Add libusb bindings (Evan Nemerson)
998  * Add bzip2 bindings (Maciej Piechotka)
999  * Updates to the GLib, GTK+, GStreamer, and libsoup bindings.
1000  * Fixes for Windows.
1001  * Many bug fixes.
1003 Vala 0.1.6
1004 ==========
1006  * Add support for instance delegates.
1007  * Support conditional method compilation.
1008  * Add support for nested generic types.
1009  * Add size_t and ssize_t.
1010  * Use non-null types by default with --enable-non-null option.
1011  * Limited support for nullable types.
1012  * Add basic support for method pre- and postconditions.
1013  * Improve pointer support.
1014  * Always enable memory management.
1015  * Add libgnome-menu bindings (Roberto Majadas)
1016  * Add liboobs-1 bindings (Roberto Majadas)
1017  * Updates to the GLib, GTK+, GStreamer, SQLite, and libxml2 bindings.
1018  * Small documentation improvements.
1019  * Many bug fixes.
1021 Vala 0.1.5
1022 ==========
1024  * Add Vala Project Generator.
1025  * Support `in` operator for enums.
1026  * Support typeof for generic type parameters.
1027  * Replace gidlgen by vala-gen-introspect with a real C parser.
1028  * Update all bindings to use vala-gen-introspect.
1029  * Fix many gcc warnings.
1030  * Fix build with Cygwin and MinGW (Yaakov Selkowitz).
1031  * Many bug fixes.
1033 Vala 0.1.4
1034 ==========
1036  * Use .vapi as file extension for bindings.
1037  * Add Vala Reference Manual.
1038  * Add support for object initializers.
1039  * Emit #line directives in debug mode.
1040  * Add --basedir option.
1041  * Support creation methods in structs.
1042  * Add support for [Notify] attribute for properties.
1043  * Add experimental support for registering new fundamental classed types.
1044  * Improve support for non-GObject classes.
1045  * Improve error reporting.
1046  * Add vapicheck to verify generated bindings (Mathias Hasselmann).
1047  * Drop xml_pp dependency (Alberto Ruiz).
1048  * Many bug fixes.
1050 Vala 0.1.3
1051 ==========
1053  * Convert reference-type structs to classes for a more consistent type system.
1054  * Support `as` operator (Mathias Hasselmann).
1055  * Improve array support.
1056  * Experimental D-Bus client support.
1057  * Add GConf bindings.
1058  * Add libgnome and libgnomeui bindings.
1059  * Add Glade bindings.
1060  * Add libnotify bindings (Nicolas Christener, Roland Hostettler).
1061  * Add GnomeVFS bindings.
1062  * Add GtkSourceView bindings.
1063  * Add Panel Applet bindings.
1064  * Add GNOME Desktop Library bindings.
1065  * Add libsoup bindings.
1066  * Add libwnck bindings.
1067  * Add GtkMozEmbed bindings (Alberto Ruiz).
1068  * Add Poppler bindings (Alberto Ruiz).
1069  * Add Enchant bindings (Mathias Hasselmann).
1070  * Add Hildon bindings (Marcelo Lira).
1071  * Add SQLite bindings.
1072  * Add curses bindings (Ed Schouten).
1073  * Build system fixes (Nicolas Trangez).
1074  * Add manual pages for gidlgen and vapigen (Kumar Appaiah).
1075  * Many bug fixes all over the place.
1077 Vala 0.1.2
1078 ==========
1080  * Use and support libgee collection library (internal copy for now).
1081  * Performance improvements.
1082  * Improve support for generic types.
1083  * Many memory management fixes.
1084  * Add support for inner classes.
1085  * Add --cc and -X commandline options to control the C compiler.
1086  * Use GSlice for reference-type structs.
1087  * Add experimental GStreamer bindings.
1089 Vala 0.1.1
1090 ==========
1092  * Support simple exception handling.
1093  * Improve array and string support.
1094  * Support multi-dimensional arrays.
1095  * Add --thread commandline option.
1096  * Improve bindings.
1097  * Bug fixes.
1099 Vala 0.1.0
1100 ==========
1102  * Add commandline options for running the C compiler and linker.
1103  * Use # modifier for reference transfer in method parameters.
1104  * Replace callback keyword by delegate.
1105  * Improve and update GLib and GTK+ bindings.
1106  * Add experimental GVFS binding.
1107  * C89/MSVC portability fixes (Hans Breuer).
1108  * Refactor code generator.
1109  * Add experimental bindings generator.
1110  * Many bug fixes.
1112 Vala 0.0.9
1113 ==========
1115  * Add support for defining new generic classes.
1116  * Improve array support.
1117  * Memory management fixes.
1118  * Improve abstract property support.
1119  * Add basic support for flags types.
1120  * Improve GLib binding.
1121  * Add VTE binding.
1122  * Many bug fixes.
1124 Vala 0.0.8
1125 ==========
1127  * Add support for overridden properties.
1128  * Support properties and signals in interfaces.
1129  * Improve interface runtime suport.
1130  * Verify that classes implement all abstract and interface methods.
1131  * Basic compile-time support for generic types.
1132  * Default to strong references for return values and local variables.
1133  * Improve signal support.
1134  * Add support for pointers.
1135  * Improve support for numeric types.
1136  * Support writing GTypeModule-based plug-ins.
1137  * Improve manual memory management support.
1138  * Improve GTK+ bindings.
1139  * Many bug fixes.
1141 Vala 0.0.7
1142 ==========
1144  * New object construction syntax.
1145  * Interface implementations don't have to specify override anymore.
1146  * Improve interface support.
1148 Vala 0.0.6
1149 ==========
1151  * Improve interface support.
1152  * Support do loops.
1153  * Improve array support.
1154  * Improve enum support.
1155  * Add automated testing infrastructure.
1156  * Fixes for prefix and postfix operators.
1157  * Add more types to GLib bindings.
1158  * Many bug fixes.
1160 Vala 0.0.5
1161 ==========
1163  * Support base access.
1164  * Support typeof expressions.
1165  * Improve array support.
1166  * Fix possible memory leak in foreach statements.
1167  * Fix many warnings during C compilation.
1168  * Improve GTK+ bindings.
1170 Vala 0.0.4
1171 ==========
1173  * Support + operator in strings.
1174  * Support unicode character literals.
1175  * Add implicit conversions for numeric types.
1176  * Improve interface support.
1177  * Improve array support.
1178  * Support arbitrary signal parameters.
1179  * Add threading support.
1180  * Support lock statements.
1181  * Many improvements to the GTK+ bindings.
1183 Vala 0.0.3
1184 ==========
1186  * Interface fixes.
1187  * Support namespace constants.
1188  * Support switch statements.
1189  * Array creation support.
1190  * Provide complete but experimental bindings for GTK+ 2.10 and Cairo 1.2.
1191  * Add implicit array length parameter.
1192  * Follow package dependencies.
1193  * Support hexadecimal and octal integer literals and hexadecimal escape
1194    sequences.
1195  * Install libvala as shared library.
1197 Vala 0.0.2
1198 ==========
1200  * Support named construction methods.
1201  * Basic interface support.
1202  * Improve error handling.
1203  * Many bug fixes.
1206 Vala 0.0.1
1207 ==========
1209  * Initial release.