Skip to content

Commit

Permalink
Bump version to 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Ari Jolma committed Jul 10, 2023
1 parent 9f8f688 commit 507c15d
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 15 deletions.
5 changes: 4 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
Revision history for Perl extension Geo::GDAL::FFI

0.09 July 10, 2023
0.10 July 10, 2023
- Add dependency to FFI::Platypus::Declare
- Update from GDAL 3.4 and add MakeValid method to Geometry
- Add Normalize method to Geometry
- Update to gdal 3.7
- Make Band inherit from Object

0.09 Mar 16, 2021
- ?

0.08 May 15, 2020
- Update GDAL API to 3.1.0
- add a Dataset::GetLayerCount method
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use Geo::GDAL::FFI::GeomFieldDefn;
use Geo::GDAL::FFI::Feature;
use Geo::GDAL::FFI::Geometry;

our $VERSION = 0.0900;
our $VERSION = 0.1000;
our $DEBUG = 0;

our @ISA = qw(Exporter);
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Band.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use Carp;
use FFI::Platypus::Buffer;
use base 'Geo::GDAL::FFI::Object';

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub DESTROY {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Dataset.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use Carp;
use base 'Geo::GDAL::FFI::Object';
use Scalar::Util qw /blessed/;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub DESTROY {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Driver.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp;
use base 'Geo::GDAL::FFI::Object';

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub GetName {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Feature.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Carp;
use Encode qw(decode encode);
use FFI::Platypus::Buffer;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub new {
my ($class, $defn) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/FeatureDefn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub new {
my ($class, $args) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/FieldDefn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub new {
my ($class, $args) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/GeomFieldDefn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub new {
my ($class, $args) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Geometry.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

my %ref;

Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Layer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp;
use base 'Geo::GDAL::FFI::Object';

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub DESTROY {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Object.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub GetDescription {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/SpatialReference.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub new {
my ($class, $arg, @arg) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/VSI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Carp;
use FFI::Platypus::Buffer;
require Exporter;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

our @ISA = qw(Exporter);
our @EXPORT_OK = qw(Mkdir Rmdir ReadDir FOpen Unlink Rename);
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/VSI/File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Carp;
use FFI::Platypus::Buffer;
use FFI::Platypus::Declare;

our $VERSION = 0.0900;
our $VERSION = 0.1000;

sub Open {
my ($class, $path, $access) = @_;
Expand Down

0 comments on commit 507c15d

Please sign in to comment.