Skip to content

Commit

Permalink
ImageTransformations v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnychen94 committed Oct 26, 2021
1 parent f2a6e4b commit 6f2a65a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
@@ -1,8 +1,12 @@
# ImageTransformations

## Version `v0.9.2`

- ![Enhancement][badge-enhancement] The in-place version of resize function `imresize!` is optimized and exported. ([#150](github-150))

## Version `v0.9.1`

- angles in `imrotate` are processed with high precision, restoring it to the same behavior you'd get from a manually-constructed
- ![Enhancement][badge-enhancement] angles in `imrotate` are processed with high precision, restoring it to the same behavior you'd get from a manually-constructed
`tform` supplied to `warp`. This can change the presence/absence of padding on the edges. ([#148][github-148], [#149](github-149))

## Version `v0.9.0`
Expand All @@ -24,6 +28,8 @@ whether a "fill-value" is used instead of interpolation.
- ![Bugfix][badge-bugfix] `restrict` on singleton dimension is now a no-op. ([ImageBase#8][github-base-8])
- ![Bugfix][badge-bugfix] `restrict` on `OffsetArray` always returns an `OffsetArray` result. ([ImageBase#4][github-base-4])


[github-150]: https://github.com/JuliaImages/ImageTransformations.jl/pull/149
[github-149]: https://github.com/JuliaImages/ImageTransformations.jl/pull/149
[github-148]: https://github.com/JuliaImages/ImageTransformations.jl/pull/148
[github-143]: https://github.com/JuliaImages/ImageTransformations.jl/pull/143
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,6 +1,6 @@
name = "ImageTransformations"
uuid = "02fcd773-0e25-5acc-982a-7f6622650795"
version = "0.9.1"
version = "0.9.2"

[deps]
AxisAlgorithms = "13072b0f-2c55-5437-9ae7-d433b7a33950"
Expand Down

2 comments on commit 6f2a65a

@johnnychen94
Copy link
Member Author

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/47547

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.9.2 -m "<description of version>" 6f2a65a63fe758d4926d1a33cc4e3d20e4248741
git push origin v0.9.2

Please sign in to comment.