Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
Fixes #18
  • Loading branch information
Gaspare Sganga committed Aug 30, 2019
1 parent c56d8f5 commit 63b2abf
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/)
and this project adheres to [Semantic Versioning](https://semver.org/).


## v3dev
## v3.0.0 - 2018-08-30
### Added
- Complete OOP style refactoring
- Shapefile writing capabilities
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PHP ShapeFile

PHP library to read any *ESRI Shapefile* and its associated DBF into a PHP Array, WKT or GeoJSON
PHP library to read and write ESRI Shapefiles, compatible with WKT and GeoJSON

---

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3dev
3.0.0
2 changes: 1 addition & 1 deletion src/Shapefile/Geometry/Geometry.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/Geometry/GeometryCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/Geometry/Linestring.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/Geometry/MultiLinestring.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/Geometry/MultiPoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/Geometry/MultiPolygon.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/Geometry/Point.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/Geometry/Polygon.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/Shapefile.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/ShapefileAutoloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/ShapefileException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/ShapefileReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shapefile/ShapefileWriter.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3dev
* @version 3.0.0
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down

0 comments on commit 63b2abf

Please sign in to comment.