2019-04-15  Rico Tzschichholz  <ricotz@ubuntu.com>

	Release 0.40.15

	Mark defined constructors of abstract classes as protected #2

2019-04-09  Rico Tzschichholz  <ricotz@ubuntu.com>

	codegen: Always assign original variable when consuming instance to destroy
	Fixes https://gitlab.gnome.org/GNOME/vala/issues/781

2019-04-09  Luca Bruno  <lucabru@src.gnome.org>

	vala: Use global CodeContext to retrieve root_symbol

2019-04-09  Rico Tzschichholz  <ricotz@ubuntu.com>

	tests: Add "unassigned local variable in while" test

	tests: Extend "assigned local variable" control flow tests
	Cover condition statements of WhileStatement and ConditionalExpression

	pango: Fix StringBuilder parameter of scan_word()

	Add explicit "default: break;" statements for coverage of enum-typed switch

	libvaladoc: Handle missing Run.Style.NONE in switch

	libvaladoc: Handle missing Content.List.Bullet.ORDERED in switch

	gstreamer-1.0: Fix TypeFind and TypeFindFactory method references

	gobject-introspection-1.0: Fix TypeInfo and TypeTag method references
	Fixes https://gitlab.gnome.org/GNOME/vala/issues/778

	girparser: Create correct output in get_default_lower_case_suffix()
	It must match the output of CCodeAttribute.get_default_lower_case_suffix()

	Add metadata support to set lower_case_csuffix

	See https://gitlab.gnome.org/GNOME/vala/issues/778

	tests: Add "struct (un)boxing" variant test

	codegen: Move implicit GValue cast for comparison to BinaryExpression
	Handle "==" and "!=" only as it was done before.

	This generates correct c-code for boxed simple-types and will perform
	value-based comparisons.

	See https://bugzilla.gnome.org/show_bug.cgi?id=585063

	codegen: Resolve generics in sizeof-expression of parameter initializer

2019-04-09  Corentin Noël  <corentin@elementary.io>

	tests: Add more invalid "assignment" tests to increase coverage

	tests: Add a field starting with a digit test

2019-04-09  Rico Tzschichholz  <ricotz@ubuntu.com>

	tests: Add some invalid "array slice" tests to increase coverage

	glib-2.0: Don't annotate dedicated GLib.assert_*() functions with [Assert]
	Fixes https://gitlab.gnome.org/GNOME/vala/issues/769

	vala: Variadic parameters are not supported for async methods

	libgvc: Some additions and ownership/return-type fixes

	libvaladoc: Don't try to create a Content.ListItem when there is none

	parser: Implicit creation method of abstract classes must be protected

	vala: Allow assignment of 0U to enum types
	Don't restrict unsigned 0 literal to flags-enums though.

	ccodegen: Use unsigned default value for flags-enum

	tests: Add "method ccode return-type" test to increase coverage
	https://bugzilla.gnome.org/show_bug.cgi?id=699956

	tests: Extend "struct with delegate" test to increase coverage

	gsignal: Move disconnect error from signal-module to semantic-analyzer pass
	Add corresponding invalid test to increase coverage

	gsignal: Use guint to represent flags-enum in custom GMarshalFunc

	tests: Extend "detailed signal" test to increase coverage

	parser: Don't include member-initializer in src-ref of object-creation-expr

	parser: Don't include initializer in src-ref of array-creation-expression

	parser: Extend source_reference of initializer-list to cover "{ ... }"

	parser: Exclude trailing semicolon from source_reference of statements

	parser: Don't include assigned value in source_reference of constants
	This is how it is done for fields already.

	parser: Restrict source_reference for catch/lock expression to its header

	tests: Add regression test for generic-type interference of static function

	tests: Extent "post-condition" method test to increase coverage

	Mark defined constructors of abstract classes as protected