2011-08-22  Jürg Billeter  <j@bitron.ch>

	Release 0.13.3

	codegen: Remove unused variable

2011-08-21  Luca Bruno  <lucabru@src.gnome.org>

	pangocairo: Switch to GIR

	gdk-3.0 Make pixbuf_get_from_surface return an owned instance
	Fixes bug 656990.

2011-08-19  Abderrahim Kitouni  <a.kitouni@gmail.com>

	Make Vala.Report.{errors,warnings} fields protected

2011-08-17  Luca Bruno  <lucabru@src.gnome.org>

	posix: Set ioctl() cheader to be sys/ioctl.h
	Fixes bug 656690.

	codegen: Skip precondition check for parameters in the posix profile
	Fixes bug 648204.

	codegen: Add null check for non-null struct parameters
	Commit 94d4b1e91a437f739b42f fixes another relevant part of the bug.

	Fixes bug 656693.

	codewriter: Write type parameters for struct declaration
	Based on patch by Andre Masella.

	Fixes bug 656708.

	codewriter: Factorize writing type parameters in write_type_parameters

2011-08-16  Luca Bruno  <lucabru@src.gnome.org>

	codegen: Assign to temp varable when passing a nullable struct argument
	Assign possible (*expr) to a temp variable to ensure copying the struct.

	Fixes bug 656693.

	codegen: Always copy struct on access only when it's non-nullable
	We currently don't copy the nullable struct, only the reference,
	therefore useless.