Skip to content

Commit

Permalink
Fix links in CHANGELOG
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
jipolanco committed Oct 4, 2024
1 parent 453b5cf commit 19e04d9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [v0.5.5] - 2024-10-04
## [v0.5.5](https://github.com/jipolanco/NonuniformFFTs.jl/releases/tag/v0.5.5) - 2024-10-04

### Fixed

- Transforms now work on AMD GPUs (#33).
- Transforms now work on AMD GPUs ([#33](https://github.com/jipolanco/NonuniformFFTs.jl/pull/33)).
This only required minor modifications to some KA kernels.

## [v0.5.4] - 2024-09-25
## [v0.5.4](https://github.com/jipolanco/NonuniformFFTs.jl/releases/tag/v0.5.4) - 2024-09-25

### Changed

Expand All @@ -21,7 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Enabling synchronisation is useful for getting accurate timings (in `p.timer`) but
may result in decreased performance.

## [v0.5.3] - 2024-09-24
## [v0.5.3](https://github.com/jipolanco/NonuniformFFTs.jl/releases/tag/v0.5.3) - 2024-09-24

### Changed

Expand All @@ -31,31 +31,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Plans: `block_size` argument can now be a tuple (block size along each separate dimension).

## [v0.5.2] - 2024-09-23
## [v0.5.2](https://github.com/jipolanco/NonuniformFFTs.jl/releases/tag/v0.5.2) - 2024-09-23

### Changed

- Avoid recompilation of GPU kernels when number of non-uniform points changes.

## [v0.5.1] - 2024-09-20
## [v0.5.1](https://github.com/jipolanco/NonuniformFFTs.jl/releases/tag/v0.5.1) - 2024-09-20

### Fixed

- Fix transforms of real non-uniform data on CUDA.jl.

## [v0.5.0] - 2024-09-20
## [v0.5.0](https://github.com/jipolanco/NonuniformFFTs.jl/releases/tag/v0.5.0) - 2024-09-20

### Added

- Add preliminary GPU support.

## [v0.4.1] - 2024-09-14
## [v0.4.1](https://github.com/jipolanco/NonuniformFFTs.jl/releases/tag/v0.4.1) - 2024-09-14

### Fixed

- AbstractNFFTs interface: fix 1D transforms.

## [v0.4.0] - 2024-09-13
## [v0.4.0](https://github.com/jipolanco/NonuniformFFTs.jl/releases/tag/v0.4.0) - 2024-09-13

### Added

Expand Down

2 comments on commit 19e04d9

@jipolanco
Copy link
Owner 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/116582

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.5.5 -m "<description of version>" 19e04d96b1176e38e80e00d0475fcf51ecba8808
git push origin v0.5.5

Please sign in to comment.