Skip to content

Commit

Permalink
v3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaspare Sganga committed Aug 13, 2020
1 parent 232b6c9 commit 2d7654e
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/)
and this project adheres to [Semantic Versioning](https://semver.org/).


## v3.3.1 - 2020-08-13
### Fixed
- Prevented a PHP warning when encoding a boolean `false` value for a `Shapefile::DBF_TYPE_LOGICAL` field



## v3.3.0 - 2020-05-23
### Added
- `Shapefile\Geometry\Linestring` public methods:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.3.1
2 changes: 1 addition & 1 deletion src/Shapefile/Geometry/Geometry.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @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 @@ -5,7 +5,7 @@
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.0
* @version 3.3.1
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/
Expand Down
10 changes: 10 additions & 0 deletions src/Shapefile/ShapefileWriter.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/**
* PHP Shapefile - PHP library to read and write ESRI Shapefiles, compatible with WKT and GeoJSON
*
* @package Shapefile
* @author Gaspare Sganga
* @version 3.3.1
* @license MIT
* @link https://gasparesganga.com/labs/php-shapefile/
*/<?php

/**
* PHP Shapefile - PHP library to read and write ESRI Shapefiles, compatible with WKT and GeoJSON
*
Expand Down

0 comments on commit 2d7654e

Please sign in to comment.