Skip to content

Commit

Permalink
put changes into GDAL.jl, bump patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
visr committed Oct 6, 2021
1 parent 2babb59 commit bb6e4ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "add2ef01-049f-52c4-9ee2-e494f65e021a"
keywords = ["GDAL", "IO"]
license = "MIT"
desc = "Wrapper for GDAL - Geospatial Data Abstraction Library"
version = "1.2.4"
version = "1.2.5"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand Down
4 changes: 2 additions & 2 deletions gen/epilogue.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ const GDAL_DATA = Ref{String}()
const PROJ_LIB = Ref{String}()

function __init__()
# Cleanup at exit
# cleanup at exit
atexit(gdaldestroy)

# register custom error handler
funcptr = @cfunction(gdaljl_errorhandler, Ptr{Cvoid}, (CPLErr, Cint, Cstring))
cplseterrorhandler(funcptr)
Expand Down
1 change: 1 addition & 0 deletions src/GDAL.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32994,6 +32994,7 @@ const GDAL_DATA = Ref{String}()
const PROJ_LIB = Ref{String}()

function __init__()
atexit(gdaldestroy)
funcptr = @cfunction(gdaljl_errorhandler, Ptr{Cvoid}, (CPLErr, Cint, Cstring))
cplseterrorhandler(funcptr)
versionstring = gdalversioninfo("RELEASE_NAME")
Expand Down

0 comments on commit bb6e4ad

Please sign in to comment.