Skip to content
Commits on Source (7)
2019-09-18 Andrew M. Bishop <amb>
Version 3.3.2 released.
2019-09-18 [r2025] Andrew M. Bishop <amb>
* FILES, doc/NEWS.txt, doc/README.txt, doc/html/readme.html,
src/version.h: Update for version 3.3.2 release.
2019-09-09 [r2023] Andrew M. Bishop <amb>
* python/Makefile: Fix parallel compilation in the 'python'
directory.
2019-09-08 Andrew M. Bishop <amb>
Version 3.3.1 released.
......
routino (3.3.2-1) unstable; urgency=medium
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Thu, 19 Sep 2019 06:42:17 +0200
routino (3.3.1-1) unstable; urgency=medium
* New upstream release.
......
Version 3.3.2 of Routino released : Wed Sep 18 2019
---------------------------------------------------
Bug fixes:
Ensure that parallel compilation works in the python directory.
Updated the version number in the executables to "3.3.2".
Note: This version is compatible with databases from versions 2.7.1 - 3.3.1.
Version 3.3.1 of Routino released : Sun Sep 8 2019
--------------------------------------------------
......
......@@ -136,6 +136,7 @@ Status
Version 3.2 of Routino was released on 12th March 2017.
Version 3.3 of Routino was released on 7th September 2019.
Version 3.3.1 of Routino was released on 8th September 2019.
Version 3.3.2 of Routino was released on 18th September 2019.
The full version history is available in the NEWS.txt file.
......
......@@ -224,13 +224,27 @@ Version 3.2 of Routino was released on 12th March 2017.
Version 3.3 of Routino was released on 7th September 2019.
<br>
Version 3.3.1 of Routino was released on 8th September 2019.
<br>
Version 3.3.2 of Routino was released on 18th September 2019.
<p>
The full version history is available in the NEWS.txt file.
<h3 id="H_1_5_1" title="Changes 3.3.1">Changes in Version 3.3.1</h3>
<h3 id="H_1_5_1" title="Changes 3.3.2">Changes in Version 3.3.2</h3>
<dl>
<dt>Bug fixes:
<dd>Ensure that parallel compilation works in the python directory.
<br>Updated the version number in the executables to "3.3.2".
</dl>
<p>
<b>Note:</b> This version is compatible with databases from versions 2.7.1 - 3.3.
<h3 id="H_1_5_2" title="Changes 3.3.1">Changes in Version 3.3.1</h3>
<dl>
<dt>Bug fixes:
......@@ -242,7 +256,7 @@ The full version history is available in the NEWS.txt file.
<b>Note:</b> This version is compatible with databases from versions 2.7.1 - 3.3.
<h3 id="H_1_5_2" title="Changes 3.3">Changes in Version 3.3</h3>
<h3 id="H_1_5_3" title="Changes 3.3">Changes in Version 3.3</h3>
<dl>
<dt>Bug fixes:
......
......@@ -76,9 +76,15 @@ $(BUILD_TIMESTAMP): $(SWIG_C) $(SWIG_CC) $(SWIG_PY) $(PY_FILES) $(C_FILES) $(CC_
src/_router.c : src/router.i ../src/routino.h
$(SWIG) -python -o $@ $<
src/router.py : src/_router.c
@true # fake rule since src/router.py is created by the same rule as src/_router.c
src/_database.cc : src/database.i src/database.hh
$(SWIG) -c++ -python -o $@ $<
src/database.py : src/_database.cc
@true # fake rule since src/database.py is created by the same rule as src/_database.cc
src/%.o : src/%.c
$(CC) -c $(CFLAGS) $< -o $@
......
......@@ -3,7 +3,7 @@
Part of the Routino routing software.
******************/ /******************
This file Copyright 2016, 2017 Andrew M. Bishop
This file Copyright 2016, 2017, 2019 Andrew M. Bishop
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
......@@ -23,7 +23,7 @@
#ifndef VERSION_H
#define VERSION_H /*+ To stop multiple inclusions. +*/
#define ROUTINO_VERSION "3.2+svn"
#define ROUTINO_VERSION "3.3.2"
#define ROUTINO_URL "<http://www.routino.org/>"
......