From 030f710b00b90537524b6bffc4400a29a4613895 Mon Sep 17 00:00:00 2001 From: artemp Date: Wed, 12 Aug 2015 21:02:55 +0200 Subject: [PATCH 1/3] release 3.0.3 post --- _posts/blog/2015-08-12-release-3.0.3.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 _posts/blog/2015-08-12-release-3.0.3.md diff --git a/_posts/blog/2015-08-12-release-3.0.3.md b/_posts/blog/2015-08-12-release-3.0.3.md new file mode 100644 index 0000000..33b25a0 --- /dev/null +++ b/_posts/blog/2015-08-12-release-3.0.3.md @@ -0,0 +1,14 @@ +--- +layout: 01_post +title: "Mapnik 3.0.3 Release" +author: Artem Pavlenko +category: Mapnik +--- + +As promised in our last post, the next release of Mapnik was to follow shortly. This release focuses on having a well tested and functional SVG parser. While SVG functionality was present in earlier releases, this is a vast improvement in speed and efficiency over the previous parser. Additionally, as part of this release we have removed the dependence on libxml2 from the mapnik library. + +Very pleased to announce 3.0.3 release! This release adds three new image-filters to simulate types of colour blindness - great work [Blake](https://github.com/flippmoke)! We restored support for legacy format for setting JPEG output quality - welcome back `jpeg85`. As always the main focus is on stability, performance and addesssing issues which we discovered while testing. Check out [v3.0.3 Changelog](https://github.com/mapnik/mapnik/blob/master/CHANGELOG.md#303) for more details. + +## Download + +Follow links to [download the official source](https://mapnik.s3.amazonaws.com/dist/v3.0.3/mapnik-v3.0.3.tar.bz2) directly or you can grab it from our [downloads page](/pages/downloads.html). From 4f62b4c27a3ca044b694474412741060b80d7ecd Mon Sep 17 00:00:00 2001 From: artemp Date: Wed, 12 Aug 2015 21:05:36 +0200 Subject: [PATCH 2/3] upate download links --- pages/downloads.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pages/downloads.md b/pages/downloads.md index 2b1ae27..3b96c01 100644 --- a/pages/downloads.md +++ b/pages/downloads.md @@ -5,7 +5,7 @@ title: Downloads ## Latest Major Release -The latest release is Mapnik v3.0.2. +The latest release is Mapnik v3.0.3. ## Mapnik 3.0 @@ -13,27 +13,27 @@ Release Date: July 30th, 2015 ### Prebuilt Binaries -We plan on providing prebuilt binaries soon for Mapnik 3.0.2. +We plan on providing prebuilt binaries soon for Mapnik 3.0.3. ### Source Installation -To build Mapnik v3.0.1 from source either download the [v3.0.2 tarball](https://mapnik.s3.amazonaws.com/dist/v3.0.2/mapnik-v3.0.2.tar.bz2) or pull directly from github: +To build Mapnik v3.0.3 from source either download the [v3.0.3 tarball](https://mapnik.s3.amazonaws.com/dist/v3.0.3/mapnik-v3.0.3.tar.bz2) or pull directly from github: - git clone https://github.com/mapnik/mapnik.git - git checkout v3.0.2 - git submodule update --init - ./configure && make && make test + git clone https://github.com/mapnik/mapnik.git + git checkout v3.0.3 + git submodule update --init + ./configure && make && make test -For source install help see the [Install docs](https://github.com/mapnik/mapnik/blob/v3.0.2/INSTALL.md) +For source install help see the [Install docs](https://github.com/mapnik/mapnik/blob/v3.0.3/INSTALL.md) You can also use git to fetch the latest code (will default to `master` branch): - git clone https://github.com/mapnik/mapnik.git + git clone https://github.com/mapnik/mapnik.git Browse the code at [github](https://github.com/mapnik/mapnik). Download a snapshot as a [zip archive](https://github.com/mapnik/mapnik/archive/master.zip). - + ## Mapnik 2.2 @@ -45,7 +45,7 @@ Release Date: June 3rd, 2013 The recommend install method on OS X is `homebrew`. If you are running `homebrew` simply do: - brew update && brew install mapnik + brew update && brew install mapnik We also provide a pre-built [OS X 64 bit package](http://mapnik.s3.amazonaws.com/dist/v2.2.0/mapnik-osx-v2.2.0.dmg) that will install into the same place (`/usr/local`) as homebrew. @@ -68,8 +68,8 @@ We also provide a pre-built [OS X 64 bit package](http://mapnik.s3.amazonaws.com To build Mapnik v2.2.0 from source either download the [v2.2.0 tarball](http://mapnik.s3.amazonaws.com/dist/v2.2.0/mapnik-v2.2.0.tar.bz2) or pull directly from github: - git clone https://github.com/mapnik/mapnik.git - git checkout v2.2.0 + git clone https://github.com/mapnik/mapnik.git + git checkout v2.2.0 For source install help see the [Install docs](https://github.com/mapnik/mapnik/blob/v2.2.0/INSTALL.md) From d3d971e65c9f593d172a869e8384724063379b47 Mon Sep 17 00:00:00 2001 From: Blake Thompson Date: Wed, 12 Aug 2015 15:10:54 -0500 Subject: [PATCH 3/3] Removed repeated text from previous post --- _posts/blog/2015-08-12-release-3.0.3.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/_posts/blog/2015-08-12-release-3.0.3.md b/_posts/blog/2015-08-12-release-3.0.3.md index 33b25a0..a1e00cb 100644 --- a/_posts/blog/2015-08-12-release-3.0.3.md +++ b/_posts/blog/2015-08-12-release-3.0.3.md @@ -5,8 +5,6 @@ author: Artem Pavlenko category: Mapnik --- -As promised in our last post, the next release of Mapnik was to follow shortly. This release focuses on having a well tested and functional SVG parser. While SVG functionality was present in earlier releases, this is a vast improvement in speed and efficiency over the previous parser. Additionally, as part of this release we have removed the dependence on libxml2 from the mapnik library. - Very pleased to announce 3.0.3 release! This release adds three new image-filters to simulate types of colour blindness - great work [Blake](https://github.com/flippmoke)! We restored support for legacy format for setting JPEG output quality - welcome back `jpeg85`. As always the main focus is on stability, performance and addesssing issues which we discovered while testing. Check out [v3.0.3 Changelog](https://github.com/mapnik/mapnik/blob/master/CHANGELOG.md#303) for more details. ## Download