File tree Expand file tree Collapse file tree 7 files changed +33
-16
lines changed
Expand file tree Collapse file tree 7 files changed +33
-16
lines changed Original file line number Diff line number Diff 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+
16310.11.0 - 2008-05-20
1732-------------------
1833
Original file line number Diff line number Diff line change 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"
33xmlns=" http://www.topografix.com/GPX/1/1"
44xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
55xsi:schemaLocation=" http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd" >
Original file line number Diff line number Diff line change 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"
33xmlns=" http://www.topografix.com/GPX/1/1"
44xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
55xsi:schemaLocation=" http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd" >
Original file line number Diff line number Diff line change 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"
33xmlns=" http://www.topografix.com/GPX/1/1"
44xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
55xsi:schemaLocation=" http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd" >
Original file line number Diff line number Diff line change 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" />
Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff 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">
You can’t perform that action at this time.
0 commit comments