From f5b40ec29d7d097488302105da74b6c68a63932e Mon Sep 17 00:00:00 2001 From: Aurelien Gateau Date: Sat, 19 May 2018 19:16:47 +0200 Subject: [PATCH] Getting ready for 0.4.0 --- NEWS | 9 +++++++++ doxyqml/doxyqml.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 5dc3b68..df338e3 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +# 2018.05.19 - 0.4.0 + +- Add support for wrapping generated C++ code in a namespace (Taylor Braun-Jones) +- Explicitly specify the encoding of the QML input files as utf-8 (Taylor Braun-Jones) +- Fix parsing of properties named "property" (Taylor Braun-Jones) +- Fix parsing of multiline text strings (Taylor Braun-Jones) +- Made parsing of pragma and imports more resilient to spaces before or after, (Sanjay Joshi, Taylor Braun-Jones, Aurelien Gateau) +- Add a script to run all tests through coverage and make Travis run it (Aurelien Gateau) + # 2016.06.20 - 0.3.0 - Port to Python 3 (Olivier Churlaud, Aurélien Gâteau) diff --git a/doxyqml/doxyqml.py b/doxyqml/doxyqml.py index 983a08d..d712516 100755 --- a/doxyqml/doxyqml.py +++ b/doxyqml/doxyqml.py @@ -11,7 +11,7 @@ from .qmlclass import QmlClass -VERSION = "0.3.0" +VERSION = "0.4.0" DESCRIPTION = "Doxygen input filter for QML files"