Skip to content

Commit 6f85afc

Browse files
committed
Release 0.12.0
1 parent 53c04b3 commit 6f85afc

File tree

7 files changed

+33
-16
lines changed

7 files changed

+33
-16
lines changed

NEWS.rst

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,28 @@ User-visible changes
66

77
.. contents::
88

9-
SCM only
10-
--------
9+
0.12.0 - 2014-01-27
10+
-------------------
1111

12-
* Added a bash completion script for edist.py
12+
* Python 3 support, but Python 2.6 is now the lowest supported version
13+
* New support files to handle dependencies for pip_ users in ``extra/``
14+
* GPX 1.0 support has been removed
15+
* KML support for versions older than 2.2 has been removed
16+
* Unicode output guessing has been removed from ``edist``
17+
* Added a zsh completion script for edist
18+
* PEP-3101_ format support
19+
* aaargh_ is now required
20+
* lxml_ is no longer optional, and is now required for XML support
21+
* The testsuite now requires expecter_ and nose2_
1322
* Added support for metadata in GPX files
1423
* Added support for route data in GPX files
1524

25+
.. _pip: https://crate.io/packages/pip/
26+
.. _pep-3101: http://www.python.org/dev/peps/pep-3101/
27+
.. _aaargh: https://crate.io/packages/aaargh/
28+
.. _expecter: https://crate.io/packages/expecter/
29+
.. _nose2: https://crate.io/packages/nose2/
30+
1631
0.11.0 - 2008-05-20
1732
-------------------
1833

tests/data/gpx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2-
<gpx version="1.1" creator="upoints/0.11.0"
2+
<gpx version="1.1" creator="upoints/0.12.0"
33
xmlns="http://www.topografix.com/GPX/1/1"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
55
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">

tests/data/gpx_routes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2-
<gpx version="1.1" creator="upoints/0.11.0"
2+
<gpx version="1.1" creator="upoints/0.12.0"
33
xmlns="http://www.topografix.com/GPX/1/1"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
55
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">

tests/data/gpx_tracks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2-
<gpx version="1.1" creator="upoints/0.11.0"
2+
<gpx version="1.1" creator="upoints/0.12.0"
33
xmlns="http://www.topografix.com/GPX/1/1"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
55
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">

tests/data/osm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<osm version="0.5" generator="upoints/0.11.0">
2+
<osm version="0.5" generator="upoints/0.12.0">
33
<node id="0" lat="52.015749" lon="-0.221765" user="jnrowe" visible="true" timestamp="2008-01-25T12:52:11+00:00" />
44
<node id="1" lat="52.015761" lon="-0.221767" visible="true" timestamp="2008-01-25T12:53:00+00:00">
55
<tag k="created_by" v="hand" />

upoints/_version.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# This is upoints version 0.11.0 (2008-05-20)
1+
# This is upoints version 0.12.0 (2014-01-27)
2+
# pylint: disable=C0103, C0111, C0121, W0622
23

3-
dotted = '0.11.0'
4-
libtool = '11:20'
5-
hex = 0x000b00
6-
date = '2008-05-20'
7-
tuple = (0, 11, 0)
8-
web = 'upoints/0.11.0'
4+
dotted = '0.12.0'
5+
libtool = '12:20'
6+
hex = 0x000c00
7+
date = '2014-01-27'
8+
tuple = (0, 12, 0)
9+
dict = {'major': 0, 'micro': 0, 'minor': 12}
10+
web = 'upoints/0.12.0'

upoints/gpx.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ def import_locations(self, gpx_file):
601601
Documentation`_, which is XML such as::
602602
603603
<?xml version="1.0" encoding="utf-8" standalone="no"?>
604-
<gpx version="1.1" creator="upoints/0.11.0"
604+
<gpx version="1.1" creator="upoints/0.12.0"
605605
xmlns="http://www.topografix.com/GPX/1/1"
606606
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
607607
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">
@@ -724,7 +724,7 @@ def import_locations(self, gpx_file):
724724
Documentation`_, which is XML such as::
725725
726726
<?xml version="1.0" encoding="utf-8" standalone="no"?>
727-
<gpx version="1.1" creator="upoints/0.11.0"
727+
<gpx version="1.1" creator="upoints/0.12.0"
728728
xmlns="http://www.topografix.com/GPX/1/1"
729729
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
730730
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">

0 commit comments

Comments
 (0)