Skip to content

Commit

Permalink
bump minor version to 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaqz authored Jan 21, 2025
1 parent 8128d41 commit 212db85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Rasters"
uuid = "a3a2b9e3-a471-40c9-b274-f788e487c689"
authors = ["Rafael Schouten <[email protected]>"]
version = "0.13.1"
version = "0.14.0"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down

4 comments on commit 212db85

@rafaqz
Copy link
Owner Author

@rafaqz rafaqz commented on 212db85 Jan 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/123404

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.14.0 -m "<description of version>" 212db85969602681235786b61d3ddffc79b8c0d3
git push origin v0.14.0

@rafaqz
Copy link
Owner Author

@rafaqz rafaqz commented on 212db85 Jan 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

Breaking changes

  • missingval is now missing by default. You can set it with missingval=somethingelse like NaN. missingval=Rasters.missingval will just run the missingval function on the source dataset to find the existing missing value, which is pretty much the behaviour before this PR. You can also do missingval=source=>dest with a Pair if you know there is a missing value that is incorrectly/not specified in the files metadata - there will be no automatic detection at all.
  • scale and offset are applied by default where found in array metadata. scaled=false in Raster or RasterStack will turn this off. raw=true will too, and also use the original missing value - the source array will be unchanged.
  • aggregated and disaggregate have slightly changed arguments and keywords, along with optimisations
  • mosaic also has some argument/keyword changes

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/123404

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.14.0 -m "<description of version>" 212db85969602681235786b61d3ddffc79b8c0d3
git push origin v0.14.0

Please sign in to comment.