The new 0.15.1 version of the Vala programming language has been released. This version introduces a lot of enhancements and regression fixes with regards to the previous 0.15.0 release.
Changes
Important breakage note
Now captured parameters of
array type are no more copied implicitly by Vala. A captured parameter is one of the following:
- Either it is a parameter of an async method
- Or it is a parameter used inside of a closure
The advantage is that async methods in GIO that have arrays as parameters (like buffers) can finally be overridden, otherwise impossible. Same goes parameters referred by closures.
Therefore, if you were relying on the implicit array copy made by Vala in these cases, please take care of this change.
More information and downloads at the
Vala homepage.