From 8dcabdad9c1b645648b1b51e3132e740bad1557c Mon Sep 17 00:00:00 2001 From: Ari Jolma Date: Tue, 19 Dec 2023 07:32:08 +0200 Subject: [PATCH] Set version to 0.12 --- lib/Geo/GDAL/FFI.pm | 2 +- lib/Geo/GDAL/FFI/Band.pm | 2 +- lib/Geo/GDAL/FFI/Dataset.pm | 2 +- lib/Geo/GDAL/FFI/Driver.pm | 2 +- lib/Geo/GDAL/FFI/Feature.pm | 2 +- lib/Geo/GDAL/FFI/FeatureDefn.pm | 2 +- lib/Geo/GDAL/FFI/FieldDefn.pm | 2 +- lib/Geo/GDAL/FFI/GeomFieldDefn.pm | 2 +- lib/Geo/GDAL/FFI/Geometry.pm | 2 +- lib/Geo/GDAL/FFI/Layer.pm | 2 +- lib/Geo/GDAL/FFI/Object.pm | 2 +- lib/Geo/GDAL/FFI/SpatialReference.pm | 2 +- lib/Geo/GDAL/FFI/VSI.pm | 2 +- lib/Geo/GDAL/FFI/VSI/File.pm | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/Geo/GDAL/FFI.pm b/lib/Geo/GDAL/FFI.pm index 871ab25..a00ed5a 100644 --- a/lib/Geo/GDAL/FFI.pm +++ b/lib/Geo/GDAL/FFI.pm @@ -26,7 +26,7 @@ use Geo::GDAL::FFI::GeomFieldDefn; use Geo::GDAL::FFI::Feature; use Geo::GDAL::FFI::Geometry; -our $VERSION = 0.1100; +our $VERSION = 0.1200; our $DEBUG = 0; our @ISA = qw(Exporter); diff --git a/lib/Geo/GDAL/FFI/Band.pm b/lib/Geo/GDAL/FFI/Band.pm index a95bf8f..0297d9b 100644 --- a/lib/Geo/GDAL/FFI/Band.pm +++ b/lib/Geo/GDAL/FFI/Band.pm @@ -6,7 +6,7 @@ use Carp; use FFI::Platypus::Buffer; use base 'Geo::GDAL::FFI::Object'; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub DESTROY { my $self = shift; diff --git a/lib/Geo/GDAL/FFI/Dataset.pm b/lib/Geo/GDAL/FFI/Dataset.pm index 226aa59..68f9286 100644 --- a/lib/Geo/GDAL/FFI/Dataset.pm +++ b/lib/Geo/GDAL/FFI/Dataset.pm @@ -6,7 +6,7 @@ use Carp; use base 'Geo::GDAL::FFI::Object'; use Scalar::Util qw /blessed/; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub DESTROY { my $self = shift; diff --git a/lib/Geo/GDAL/FFI/Driver.pm b/lib/Geo/GDAL/FFI/Driver.pm index 4900122..3ae7fe0 100644 --- a/lib/Geo/GDAL/FFI/Driver.pm +++ b/lib/Geo/GDAL/FFI/Driver.pm @@ -5,7 +5,7 @@ use warnings; use Carp; use base 'Geo::GDAL::FFI::Object'; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub GetName { my $self = shift; diff --git a/lib/Geo/GDAL/FFI/Feature.pm b/lib/Geo/GDAL/FFI/Feature.pm index ac454af..36b37cd 100644 --- a/lib/Geo/GDAL/FFI/Feature.pm +++ b/lib/Geo/GDAL/FFI/Feature.pm @@ -7,7 +7,7 @@ use Carp; use Encode qw(decode encode); use FFI::Platypus::Buffer; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub new { my ($class, $defn) = @_; diff --git a/lib/Geo/GDAL/FFI/FeatureDefn.pm b/lib/Geo/GDAL/FFI/FeatureDefn.pm index f87ef74..e490465 100644 --- a/lib/Geo/GDAL/FFI/FeatureDefn.pm +++ b/lib/Geo/GDAL/FFI/FeatureDefn.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Carp; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub new { my ($class, $args) = @_; diff --git a/lib/Geo/GDAL/FFI/FieldDefn.pm b/lib/Geo/GDAL/FFI/FieldDefn.pm index c4fc20b..96e5c5b 100644 --- a/lib/Geo/GDAL/FFI/FieldDefn.pm +++ b/lib/Geo/GDAL/FFI/FieldDefn.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Carp; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub new { my ($class, $args) = @_; diff --git a/lib/Geo/GDAL/FFI/GeomFieldDefn.pm b/lib/Geo/GDAL/FFI/GeomFieldDefn.pm index d60b459..7eec3be 100644 --- a/lib/Geo/GDAL/FFI/GeomFieldDefn.pm +++ b/lib/Geo/GDAL/FFI/GeomFieldDefn.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Carp; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub new { my ($class, $args) = @_; diff --git a/lib/Geo/GDAL/FFI/Geometry.pm b/lib/Geo/GDAL/FFI/Geometry.pm index 771b4ac..ce9a455 100644 --- a/lib/Geo/GDAL/FFI/Geometry.pm +++ b/lib/Geo/GDAL/FFI/Geometry.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Carp; -our $VERSION = 0.1100; +our $VERSION = 0.1200; my %ref; diff --git a/lib/Geo/GDAL/FFI/Layer.pm b/lib/Geo/GDAL/FFI/Layer.pm index aa32613..a37c5ed 100644 --- a/lib/Geo/GDAL/FFI/Layer.pm +++ b/lib/Geo/GDAL/FFI/Layer.pm @@ -5,7 +5,7 @@ use warnings; use Carp; use base 'Geo::GDAL::FFI::Object'; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub DESTROY { my $self = shift; diff --git a/lib/Geo/GDAL/FFI/Object.pm b/lib/Geo/GDAL/FFI/Object.pm index dff9286..a2e8c24 100644 --- a/lib/Geo/GDAL/FFI/Object.pm +++ b/lib/Geo/GDAL/FFI/Object.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Carp; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub GetDescription { my $self = shift; diff --git a/lib/Geo/GDAL/FFI/SpatialReference.pm b/lib/Geo/GDAL/FFI/SpatialReference.pm index a466627..2bcce4d 100644 --- a/lib/Geo/GDAL/FFI/SpatialReference.pm +++ b/lib/Geo/GDAL/FFI/SpatialReference.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Carp; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub new { my ($class, $arg, @arg) = @_; diff --git a/lib/Geo/GDAL/FFI/VSI.pm b/lib/Geo/GDAL/FFI/VSI.pm index ab6369b..9217bbc 100644 --- a/lib/Geo/GDAL/FFI/VSI.pm +++ b/lib/Geo/GDAL/FFI/VSI.pm @@ -7,7 +7,7 @@ use Carp; use FFI::Platypus::Buffer; require Exporter; -our $VERSION = 0.1100; +our $VERSION = 0.1200; our @ISA = qw(Exporter); our @EXPORT_OK = qw(Mkdir Rmdir ReadDir FOpen Unlink Rename); diff --git a/lib/Geo/GDAL/FFI/VSI/File.pm b/lib/Geo/GDAL/FFI/VSI/File.pm index 7b92c58..6f6982f 100644 --- a/lib/Geo/GDAL/FFI/VSI/File.pm +++ b/lib/Geo/GDAL/FFI/VSI/File.pm @@ -6,7 +6,7 @@ use Encode qw(decode encode); use Carp; use FFI::Platypus::Buffer; -our $VERSION = 0.1100; +our $VERSION = 0.1200; sub Open { my ($class, $path, $access) = @_;