Skip to content

Commit

Permalink
SparseConnectivityTracer v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
adrhill committed Aug 20, 2024
1 parent 1e92c51 commit 1cbade6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@

## Version `v0.6.2`

* ![Feature][badge-feature] More methods for `round` and `rand` ([#162])
* ![Bugfix][badge-bugfix] Fix Hessian on NNlib activation functions ([#162])
* ![Feature][badge-feature] Return only primal value when applying non-differentiable methods to `Dual` numbers ([#169])
* ![Feature][badge-feature] Increase sparsity for Diagonal inputs ([#165])
* ![Feature][badge-feature] Add more methods on `round`, `rand` ([#162])
* ![Documentation][badge-docs] This release brings large updates to the documentation:
* Document limitations ([#175])
* Document global vs. local patterns ([#176])
* Add "How it works" developer documentation ([#174])
* Add developer documentation on custom overloads ([#177])
* ![Enhancement][badge-enhancement] Refactor type conversions ([#173], [#168], [#166])
* ![Enhancement][badge-enhancement] Make comparisons regular operators ([#169])
* ![Bugfix][badge-bugfix] Fix Hessian on NNlib activation functions `celu`, `elu`, `selu`, `hardswish` ([#162])
* ![Bugfix][badge-bugfix] Fix `isless` ([#161])

## Version `v0.6.1`
Expand Down Expand Up @@ -39,6 +48,15 @@
[badge-maintenance]: https://img.shields.io/badge/maintenance-gray.svg
[badge-docs]: https://img.shields.io/badge/docs-orange.svg

[#177]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/177
[#176]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/176
[#175]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/175
[#174]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/174
[#173]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/173
[#169]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/169
[#168]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/168
[#166]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/166
[#165]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/165
[#162]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/162
[#161]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/161
[#158]: https://github.com/adrhill/SparseConnectivityTracer.jl/pull/158
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SparseConnectivityTracer"
uuid = "9f842d2f-2579-4b1d-911e-f412cf18a3f5"
authors = ["Adrian Hill <[email protected]>"]
version = "0.6.2-DEV"
version = "0.6.2"

[deps]
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
Expand Down

2 comments on commit 1cbade6

@adrhill
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 register

Release notes:

  • Feature Return only primal value when applying non-differentiable methods to Dual numbers (#169)
  • Feature Increase sparsity for Diagonal inputs (#165)
  • Feature Add more methods on round, rand (#162)
  • Documentation This release brings large updates to the documentation:
    • Document limitations (#175)
    • Document global vs. local patterns (#176)
    • Add "How it works" developer documentation (#174)
    • Add developer documentation on custom overloads (#177)
  • Enhancement Refactor type conversions (#173, #168, #166)
  • Enhancement Make comparisons regular operators (#169)
  • Bugfix Fix Hessian on NNlib activation functions celu, elu, selu, hardswish (#162)
  • Bugfix Fix isless (#161)

@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/113536

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.6.2 -m "<description of version>" 1cbade69b50dfce858ecfdcc6d07ed53a52967ca
git push origin v0.6.2

Please sign in to comment.