diff --git a/CHANGELOG.md b/CHANGELOG.md index 398ef3d4b..8aeaad864 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,26 @@ Developers: Please commit along with changes. For a complete change history, see the git log. +## 3.0.2 + +Released: July 31, 2015 + +(Packaged from f5cf669) + +#### Summary + +This release is centered around improvements to the SVG parsing within mapnik. Most work was done in pull request #3003. + +- Added container to log SVG parsing errors +- Reimplemented to use rapidxml for parsing XML (DOM) +- Support both xml:id and id attributes ( xml:id takes precedence ) +- Added parse_id_from_url using boost::spirit +- Added error tracking when parsing doubles +- Unit tests for svg_parser to improve coverage +- Fixed rx/ry validation for rounded_rect +- Fixed dimensions parsing +- Remove libxml2 dependency + ## 3.0.1 Released: July 27th, 2015 diff --git a/include/mapnik/version.hpp b/include/mapnik/version.hpp index a0a7b9d8b..9e511c1e4 100644 --- a/include/mapnik/version.hpp +++ b/include/mapnik/version.hpp @@ -23,11 +23,11 @@ #ifndef MAPNIK_VERSION_HPP #define MAPNIK_VERSION_HPP -#define MAPNIK_VERSION_IS_RELEASE 0 +#define MAPNIK_VERSION_IS_RELEASE 1 #define MAPNIK_MAJOR_VERSION 3 #define MAPNIK_MINOR_VERSION 0 -#define MAPNIK_PATCH_VERSION 1 +#define MAPNIK_PATCH_VERSION 2 // translates to 300001 #define MAPNIK_VERSION (MAPNIK_MAJOR_VERSION*100000) + (MAPNIK_MINOR_VERSION*100) + (MAPNIK_PATCH_VERSION)