Skip to content

Commit

Permalink
Bump Manifolds.jl to 0.10 (#45)
Browse files Browse the repository at this point in the history
* Bump Manifolds.jl to 0.10

* update CI Julia versions

* add news entry

* bump in docs too

* one more bump
  • Loading branch information
mateuszbaran authored Aug 28, 2024
1 parent 148807d commit cedafff
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ["1.6", "1.9", "~1.10.0-0"]
julia-version: ["1.6", "1.10", "~1.11.0-0"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: 1.8
version: "1.10"
- uses: julia-actions/julia-docdeploy@v1
env:
PYTHON: ""
Expand Down
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this Julia package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.11] August 28, 2024

### Changed

* Support for `Manifolds.jl` 0.10.

## [0.3.10] December 13, 2023

### Added
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ManifoldDiff"
uuid = "af67fdf4-a580-4b9f-bbec-742ef357defd"
authors = ["Seth Axen <[email protected]>", "Mateusz Baran <[email protected]>", "Ronny Bergmann <[email protected]>"]
version = "0.3.10"
version = "0.3.11"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down Expand Up @@ -29,7 +29,7 @@ ChainRules = "1"
ChainRulesCore = "1"
DoubleFloats = ">= 0.9.2"
ForwardDiff = "0.10"
Manifolds = "0.9"
Manifolds = "0.10"
ManifoldsBase = "0.15"
RecursiveArrayTools = "2, 3"
Requires = "1"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
Documenter = "1"
DocumenterCitations = "1.2.1"
ManifoldDiff = "0.3"
Manifolds = "0.9"
Manifolds = "0.10"
ManifoldsBase = "0.15"
2 changes: 1 addition & 1 deletion test/differentiation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ using LinearAlgebra: Diagonal, dot
set_default_differential_backend!(backend)
X = [-0.0 -0.0]
@test _jacobian(f1, [1.0, -1.0]) [1.0 -2.0]
# The following seems not to worf for :central, but it does for forward
# The following seems not to work for :central, but it does for forward
fdf = ManifoldDiff.FiniteDiffBackend(Val(:forward))
@test_broken _jacobian!(f1!, X, [1.0, -1.0], fdf) === X
@test_broken X [1.0 -2.0]
Expand Down

2 comments on commit cedafff

@mateuszbaran
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/114018

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.3.11 -m "<description of version>" cedafffddcf4223daa85d73eed2c23267db61818
git push origin v0.3.11

Please sign in to comment.