[vala/0.40] Release 0.40.24



commit 073ab758cdc6b8699df164c8572f306a3b750d58
Author: Rico Tzschichholz <ricotz ubuntu com>
Date:   Tue Oct 6 09:10:36 2020 +0200

    Release 0.40.24

 NEWS                      | 80 +++++++++++++++++++++++++++++++++++++++++++++++
 doc/vala-gen-introspect.1 |  6 ++--
 doc/valac.1               |  6 ++--
 doc/valadoc.1             |  4 +--
 doc/vapigen.1             |  4 +--
 5 files changed, 90 insertions(+), 10 deletions(-)
---
diff --git a/NEWS b/NEWS
index 2f497afc5..de0397388 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,83 @@
+Vala 0.40.24
+============
+ * Various improvements and bug fixes:
+  - codegen:
+    + Improve array-dup-wrapper for empty arrays [#999]
+    + Don't call get_ccode_finish_instance() with non-async methods
+    + Cast initializer-list to struct for non-constant/-array assignment [#1013]
+    + Consistently use get_ccode_lower_case_prefix() for function names [#1008]
+    + Properly compare string if binary-expression contains string-literal
+    + Inline allocated and constant arrays are never NULL
+    + Check param for null before using it
+    + Properly destroy elements of an inline struct array [#365]
+    + Include header for base-symbols when connecting vfuncs
+    + Don't append unreachable clean-up section of Block [#169] [#838]
+    + Always include base_struct declaration if available [#464]
+    + Don't pass CCodeFunctionCall to NULL-aware free macro
+  - vala:
+    + Correctly handle qualified struct type in initializer list [#1004]
+    + Fix value-type for ArrayCreationExpression used as argument [#1009]
+    + Improve parameter check of "get" method used for foreach [#1017]
+    + Avoid subsequent critical caused by invalid array type for constant
+    + Improve error handling of nested initializer lists
+    + Don't allow "resize" invocation on variable with unowned array type [#928]
+    + Property must be writable when invoking ReturnsModifiedPointer method [#1023]
+    + Recursive check of assignment target to recognize constants [#944]
+    + Return copy of constant type in get_value_type_for_symbol()
+    + Handle parameter initializer without value-type
+    + Fully qualify member-access when using-directive was used to resolve [#57]
+    + Tranform instance member-access to a static one if possible [#270]
+    + Improve check of expression passed to yield
+    + Allow prototype access to signal with emitter
+    + Check error-type accessibility of creation methods and delegates
+    + Mark tranformed member-access as qualified [#57]
+    + Add TraverseVisitor for traversing the tree with a callback
+    + Force usage of temporary variables for "tainted" member accesses [#1061]
+    + Move transformation of unary increment/decrement to codegen
+    + Set parent_node for child nodes of lambda-expression [#1062]
+  - girparser:
+    + Actually respect given cprefix metadata for enumerations
+    + Warn about conflicting signals and properties
+    + Skip 'docsection' elements in <namespace>
+    + Add support for string "feature_test_macro" metadata
+    + Additionally fallback to "glib:type-name" to retrieve the cname
+  - girwriter:
+    + Append symbol-attributes to callback field [#1006]
+    + Add c:identifier-prefixes to <namespace>
+    + Write c:type="void" when name="none"
+    + Write c:symbol-prefix on supported elements
+    + Don't include symbols outside of a namespace [#241]
+  - libvaladoc: Support exporting the `class` modifier on methods and fields
+  - libvaladoc/girimporter:
+    + Skip "function-macro" elements
+    + Fallback to "name" for callback
+    + Fallback to "glib:type-name" for class, interface and record
+    + Improve parse_symbol_doc() and don't use parse_doc()
+    + Skip "attribute" elements
+  - libvaladoc/gtkdoc-importer:
+    + Correctly retrieve "url" from "ulink" elements
+    + Don't let parse_block_taglet() return null
+  - build: Update git-version-gen to latest upstream
+  - tests: Build typelib if g-ir-compiler is available
+  - tests: Don't rely on undefined use-after-free behaviour of glibc
+  - manual: Update from wiki.gnome.org
+  - Don't use locale dependent string functions on syntax strings [#1067]
+  - g-i: Fix a couple of C compiler warnings
+  - libvaladoc: Fix a couple of C compiler warnings
+  - testrunner: Pass --enable-checking to increase coverage, Filter external
+    -0X flags to preserve current default -O0
+
+ * Bindings:
+  - glib-2.0: Add AtomicUint, an alternation of AtomicInt for uint [#915]
+  - gio-unix-2.0: Fix "g_unix_mount_for" binding [#1052]
+  - gio-2.0: Include "gio/gsettingsbackend.h" for GLib.SettingsBackend
+    members [#1054]
+  - gtk+-3.0: Deprecated abstract methods are not required to be implemented
+  - gtk+-3.0: Update to 3.24.21+ffe2df7b
+  - gtk+-3.0: Resolve conflicts of signals with properties
+  - posix: Declare WRDE_APPEND constant as public
+  - webkit2gtk-4.0: Update to 2.30.1
+
 Vala 0.40.23
 ============
  * Regression and bug fixes:
diff --git a/doc/vala-gen-introspect.1 b/doc/vala-gen-introspect.1
index a044b4456..b6fb4fcf0 100644
--- a/doc/vala-gen-introspect.1
+++ b/doc/vala-gen-introspect.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.15.
-.TH VALA-GEN-INTROSPECT "1" "May 2020" "gen-introspect 0.40.23" "User Commands"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.16.
+.TH VALA-GEN-INTROSPECT "1" "October 2020" "gen-introspect 0.40.24" "User Commands"
 .SH NAME
 vala-gen-introspect \- generate a GI file for GObject and glib based packages
 .SH SYNOPSIS
@@ -39,7 +39,7 @@ https://gitlab.gnome.org/GNOME/vala/issues
 .SH "HOMEPAGE OR CONTACT"
 https://wiki.gnome.org/Projects/Vala
 .SH AUTHORS
-J??rg Billeter <j bitron ch>, Raffaele Sandrini <rasa gmx ch>
+J??rg Billeter, Raffaele Sandrini.
 .SH EXAMPLES
 After compilation, the following command generates a GI for pango:
 .B vala-gen-introspect pango packages/pango
diff --git a/doc/valac.1 b/doc/valac.1
index bfbb63d81..b9a306970 100644
--- a/doc/valac.1
+++ b/doc/valac.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.15.
-.TH VALAC "1" "May 2020" "Vala 0.40.23" "User Commands"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.16.
+.TH VALAC "1" "October 2020" "Vala 0.40.24" "User Commands"
 .SH NAME
 valac \- compiler that translates Vala source code into C source and header files
 .SH SYNOPSIS
@@ -219,4 +219,4 @@ Interfaces, properties, signals, foreach, lambda expressions, type
 inference for local variables, generics, non-null types, assisted memory
 management, exception handling
 .SH AUTHORS
-J??rg Billeter, Raffaele Sandrini.
+J??rg Billeter, Raffaele Sandrini, Rico Tzschichholz.
diff --git a/doc/valadoc.1 b/doc/valadoc.1
index 02663174b..8dbd5dc98 100644
--- a/doc/valadoc.1
+++ b/doc/valadoc.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.15.
-.TH VALADOC "1" "May 2020" "Valadoc 0.40.23" "User Commands"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.16.
+.TH VALADOC "1" "October 2020" "Valadoc 0.40.24" "User Commands"
 .SH NAME
 valadoc \- Vala Documentation Tool
 .SH SYNOPSIS
diff --git a/doc/vapigen.1 b/doc/vapigen.1
index 47a3764f5..489eac09a 100644
--- a/doc/vapigen.1
+++ b/doc/vapigen.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.15.
-.TH VAPIGEN "1" "May 2020" "Vala API Generator 0.40.23" "User Commands"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.16.
+.TH VAPIGEN "1" "October 2020" "Vala API Generator 0.40.24" "User Commands"
 .SH NAME
 vapigen \- generate a Vala API
 .SH SYNOPSIS


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]