setting up for mapnik v3.0.2 release

This commit is contained in:
Blake Thompson 2015-07-31 14:31:21 -05:00
parent f5cf669736
commit 8305e74eaf
2 changed files with 22 additions and 2 deletions

View file

@ -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

View file

@ -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)