pgRouting 2.1.0 got released today along with pgRouting 2.0.1 and osm2pgrouting 2.1.0-alpha1. Full details on Daniel's note: https://lists.osgeo.org/pipermail/pgrouting-users/2015-September/002148.html.
I want to especially thank Vicky Vergara for putting in all the long hours to make this happen. I am most excited about the changes in osm2pgrouting -- now support of bigints, speed improvement, and mutli-file loading much of which is Vicky and GSoc work. As a small contribution, I added schema support for osm2pgrouting 2.1
I also want to extend a BIG thank you to Ko Nagase for fixing a TRSP bug that only exhibited on 64-bit windows (fixed in pgRouting 2.0.1 and pgRotuing 2.1.0) as well as his fixing of other windows and boost related compile issues.
For windows users excited to try all these new features, you can get them - on PostGIS windows download page (for PostgreSQL 9.2-9.4) : http://postgis.net/windows_downloads
We plan to package osm2pgrouting 2.1.0 (latest) and pgRouting 2.1.0 as part of the upcoming PostGIS 2.2 Windows Application builder bundle install for PostgreSQL 9.3-9.5. We would very much appreciate people testing these packages out now so no surprises come official package time.
If you already have pgRouting 2.0.0 installed in your database, you can upgrade with :
ALTER EXTENSION pgrouting UPDATE TO "2.1.0";
If you were experimenting with a beta or RC pgrouting, you'll need to drop the extension and readd
DROP EXTENSION pgrouting;
CREATE EXTENSION pgrouting VERSION "2.1.0";
To confirm you are running the latest and greatest, run this query:
SELECT *
FROM pgr_version();
Which should output:
version | tag | build | hash | branch | boost
---------+-----------------+-------+---------+--------+--------
2.1.0 | pgrouting-2.1.0 | 1 | b38118a | master | 1.59.0
(1 row)