Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
voegelas committed Jul 23, 2023
1 parent 2654deb commit fd82fcd
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Geo::Location::TimeZoneFinder

1.001 2023-07-23 10:59:17 CEST

- Fix the tests by not importing "new"

1.000 2023-01-01 12:16:15 CET

- First version
Expand Down
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"provides" : {
"Geo::Location::TimeZoneFinder" : {
"file" : "lib/Geo/Location/TimeZoneFinder.pm",
"version" : "1.000"
"version" : "1.001"
}
},
"release_status" : "stable",
Expand All @@ -65,9 +65,9 @@
"web" : "https://github.com/voegelas/Geo-Location-TimeZoneFinder"
}
},
"version" : "1.000",
"x_generated_by_perl" : "v5.36.0",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.32",
"version" : "1.001",
"x_generated_by_perl" : "v5.36.1",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.37",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
}

2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ my %WriteMakefileArgs = (
"File::Spec::Functions" => 0,
"Test::More" => 0
},
"VERSION" => "1.000",
"VERSION" => "1.001",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = Geo-Location-TimeZoneFinder
version = 1.000
version = 1.001
author = Andreas Vögele <[email protected]>
license = Perl_5
copyright_holder = Andreas Vögele
Expand Down
4 changes: 2 additions & 2 deletions lib/Geo/Location/TimeZoneFinder.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = 1.000;
our $VERSION = 1.001;

require XSLoader;
XSLoader::load(__PACKAGE__, $VERSION);
Expand All @@ -22,7 +22,7 @@ Geo::Location::TimeZoneFinder - Map geographic coordinates to time zone names
=head1 VERSION
version 1.000
version 1.001
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion shapereader
Submodule shapereader updated 56 files
+7 −2 .github/workflows/linux.yml
+1 −1 .gitlab-ci.yml
+1 −0 CMakeLists.txt
+40 −20 dbf.c
+39 −1 dbf.h
+2 −2 shp-multipatch.c
+34 −0 shp-point.c
+3 −14 shp-point.h
+1 −1 shp-polygon.c
+1 −1 shp-polygonm.c
+1 −1 shp-polygonz.c
+1 −1 shp-polyline.c
+1 −1 shp-polylinem.c
+1 −1 shp-polylinez.c
+0 −5 shp.c
+1 −1 shp.h
+6 −5 shx.c
+3 −0 shx.h
+11 −0 tests/CMakeLists.txt
+184 −75 tests/create_data.pl
+ tests/data/dbase2.dbf
+ tests/data/multipatch.shp
+ tests/data/multipoint.shp
+ tests/data/multipointm.shp
+ tests/data/multipointz.shp
+ tests/data/null.dbf
+ tests/data/null.shp
+ tests/data/null.shx
+ tests/data/point.shp
+ tests/data/pointm.shp
+ tests/data/pointz.shp
+ tests/data/polygon.shp
+ tests/data/polygonm.shp
+ tests/data/polygonm.shx
+ tests/data/polygonz.shp
+ tests/data/polyline.shp
+ tests/data/polylinem.shp
+ tests/data/polylinem.shx
+ tests/data/polylinez.shp
+1 −1 tests/test_byteorder.c
+216 −0 tests/test_dbase2.c
+9 −2 tests/test_dbf.c
+2 −2 tests/test_multipatch.c
+15 −15 tests/test_multipoint.c
+6 −6 tests/test_multipointm.c
+6 −6 tests/test_multipointz.c
+82 −0 tests/test_null.c
+1 −1 tests/test_point.c
+1 −1 tests/test_pointm.c
+1 −1 tests/test_pointz.c
+148 −34 tests/test_polygon.c
+9 −7 tests/test_polygonm.c
+2 −2 tests/test_polygonz.c
+1 −1 tests/test_polyline.c
+7 −6 tests/test_polylinem.c
+2 −2 tests/test_polylinez.c

0 comments on commit fd82fcd

Please sign in to comment.