Skip to content

Commit 2b2a2ef

Browse files
author
Markus Nullmeier
committed
documentation: set version to 1.1.5, document several post-1.1.1 changes
1 parent dbe9c90 commit 2b2a2ef

File tree

4 files changed

+45
-14
lines changed

4 files changed

+45
-14
lines changed

doc/appendixes.sgm

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<sect1 id="appendixes">
22
<title>
3-
Appendixes
3+
Appendix
44
</title>
55
<sect2 id="appendixes.changelog-1-1">
66
<title>
@@ -24,16 +24,46 @@
2424
</listitem>
2525
</itemizedlist>
2626
</sect2>
27-
<sect2 id="appendixes.changelog-1-2">
27+
<sect2 id="appendixes.changelog-1-1-5">
2828
<title>
29-
Changes from version 1.1 to 1.2
29+
Changes from version 1.1 to 1.1.5
3030
</title>
3131
<itemizedlist>
3232
<listitem>
3333
<para>
3434
Modify behavior of function <function>set_sphere_output_precision</function>.
3535
</para>
3636
</listitem>
37+
<listitem>
38+
<para>
39+
Compatibility with <application>PostgreSQL</application> 9.2
40+
and later.
41+
</para>
42+
</listitem>
43+
<listitem>
44+
<para>
45+
Creating spath and spolygon objects &quot;as aggregate&quot;
46+
from tables should now work.
47+
</para>
48+
</listitem>
49+
<listitem>
50+
<para>
51+
Improved accuracy of spoint (great circle) distance calculation.
52+
</para>
53+
</listitem>
54+
<listitem>
55+
<para>
56+
Add new contains operators consistent with the geometry operators
57+
of the plain used in <application>PostgreSQL</application> 8.2
58+
and later:
59+
&lt;@ and @&gt;, the old operators @ and &tilde; still work.
60+
</para>
61+
</listitem>
62+
<listitem>
63+
<para>
64+
Improved correctness of spatial indexing.
65+
</para>
66+
</listitem>
3767
</itemizedlist>
3868
</sect2>
3969

doc/operators.sgm

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
Contain and overlap
152152
</title>
153153
<para>
154-
On sphere, an equality relationship is rarely used. There
154+
On the sphere, an equality relationship is rarely used. There
155155
are frequently questions like <emphasis>Is object
156156
<literal>a</literal> contained by object
157157
<literal>b</literal>?</emphasis> or <emphasis>Does object
@@ -175,34 +175,34 @@
175175
<tbody>
176176
<row>
177177
<entry>
178-
@
178+
@ or &lt;@
179179
</entry>
180180
<entry>
181-
the left object is contained by right object
181+
the left object is contained by the right object
182182
</entry>
183183
</row>
184184
<row>
185185
<entry>
186-
&tilde;
186+
&tilde; or @&gt;
187187
</entry>
188188
<entry>
189-
the left object contains right object
189+
the left object contains the right object
190190
</entry>
191191
</row>
192192
<row>
193193
<entry>
194-
!@
194+
!@ or !&lt;@
195195
</entry>
196196
<entry>
197-
the left object is not contained by right object
197+
the left object is not contained by the right object
198198
</entry>
199199
</row>
200200
<row>
201201
<entry>
202-
!&tilde;
202+
!&tilde; or !@&gt;
203203
</entry>
204204
<entry>
205-
the left object does not contain right object
205+
the left object does not contain the right object
206206
</entry>
207207
</row>
208208
<row>

doc/pg_sphere.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<article lang="en">
3131
<articleinfo>
3232
<title>
33-
pgSphere 1.2
33+
pgSphere 1.1.5
3434
</title>
3535
<author>
3636
<surname>pgSphere development team</surname>
@@ -50,6 +50,7 @@
5050
</para>
5151
<para>
5252
The project is hosted at <ulink url="http://pgfoundry.org/projects/pgsphere/"><citetitle>pgfoundry.org</citetitle></ulink>
53+
and <ulink url="https://github.com/akorotkov/pgsphere"><citetitle>https://github.com/akorotkov/pgsphere</citetitle></ulink>
5354
</para>
5455
<para>
5556
This document

output.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,6 @@ Datum
570570
pg_sphere_version(PG_FUNCTION_ARGS)
571571
{
572572
char *buffer = (char *) palloc(20);
573-
sprintf(buffer, "1.2.0");
573+
sprintf(buffer, "1.1.5");
574574
PG_RETURN_CSTRING(buffer);
575575
}

0 commit comments

Comments
 (0)