Skip to content

Commit 3e36c70

Browse files
committed
Go with 0.2.0.
1 parent fa1844b commit 3e36c70

File tree

3 files changed

+32
-7
lines changed

3 files changed

+32
-7
lines changed

config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
ARG_ENABLE("geospatial", "enable geospatial support", "no");
55

66
if (PHP_GEOSPATIAL != "no") {
7-
EXTENSION("geospatial", "geospatial.c geo_array.c");
7+
EXTENSION("geospatial", "geospatial.c geo_array.c geohash.c");
88
}
99

package.xml

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,35 @@
2626
<email>mgdm@php.net</email>
2727
<active>yes</active>
2828
</lead>
29-
<date>2015-12-04</date>
30-
<time>18:56:58</time>
29+
30+
<date>2017-12-29</date>
31+
<time>12:06:18</time>
3132
<version>
32-
<release>0.1.0</release>
33-
<api>0.1.0</api>
33+
<release>0.2.0</release>
34+
<api>0.2.0</api>
3435
</version>
3536
<stability>
3637
<release>beta</release>
3738
<api>beta</api>
3839
</stability>
3940
<license uri="http://www.php.net/license">PHP 3.01</license>
4041
<notes>
41-
Initial release on PECL (with PHP 7 support).
42+
- Fixed issue #16: Segfault on rdp_simplify for GeoJSON
43+
- Add Travis tests (Emir Beganovic)
44+
- Fixed issue #20: Add Geo Hashing functions geohash_encode and geohash_decode. (Emir Beganovic)
4245
</notes>
46+
4347
<contents>
4448
<dir name="/">
4549
<file name="LICENSE" role="doc" />
4650
<file name="config.m4" role="src" />
4751
<file name="config.w32" role="src" />
4852
<file name="geo_array.h" role="src" />
53+
<file name="geo_lat_long.h" role="src" />
54+
<file name="geohash.h" role="src" />
4955
<file name="php_geospatial.h" role="src" />
5056
<file name="geo_array.c" role="src" />
57+
<file name="geohash.c" role="src" />
5158
<file name="geospatial.c" role="src" />
5259
</dir> <!-- / -->
5360
</contents>
@@ -64,6 +71,24 @@ Initial release on PECL (with PHP 7 support).
6471
<providesextension>geospatial</providesextension>
6572
<extsrcrelease />
6673
<changelog>
74+
75+
<release>
76+
<date>2015-12-04</date>
77+
<time>18:56:58</time>
78+
<version>
79+
<release>0.1.0</release>
80+
<api>0.1.0</api>
81+
</version>
82+
<stability>
83+
<release>beta</release>
84+
<api>beta</api>
85+
</stability>
86+
<license uri="http://www.php.net/license">PHP 3.01</license>
87+
<notes>
88+
Initial release on PECL (with PHP 7 support).
89+
</notes>
90+
</release>
91+
6792
</changelog>
6893
</package>
6994
<!--

php_geospatial.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#ifndef PHP_GEOSPATIAL_H
2323
#define PHP_GEOSPATIAL_H
2424

25-
#define PHP_GEOSPATIAL_VERSION "0.1.1-dev"
25+
#define PHP_GEOSPATIAL_VERSION "0.2.0"
2626

2727
extern zend_module_entry geospatial_module_entry;
2828
#define phpext_geospatial_ptr &geospatial_module_entry

0 commit comments

Comments
 (0)