cppduals: add version 0.9.2 - #860
Merged
Merged
Conversation
0.9.1 does not configure under a toolchain that sets CMAKE_CXX_STANDARD as a normal variable; 0.9.2 fixes that.
NeroBurner
approved these changes
Aug 21, 2026
NeroBurner
left a comment
There was a problem hiding this comment.
looks good. Thank you for contributing!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds cppduals 0.9.2 — a header-only C++17 dual-number library for exact forward-mode automatic differentiation, with optional Eigen integration. MPL-2.0, described in JOSS 4(43):1487.
Contents:
cmake/projects/cppduals/hunter.cmake—url_sha1_cmakescheme, tests and benchmarks disabled.cmake/configs/default.cmake— default version 0.9.2.examples/cppduals/— example that computes f(2) and f'(2).docs/packages/pkg/cppduals.rstand the Math category entry.The first push of this PR used 0.9.1, and every CI job failed to configure:
Upstream cause: hunter toolchains set
CMAKE_CXX_STANDARDas a normal variable, so cppduals never created the cache entry it then tried to attach aSTRINGSproperty to. Fixed upstream in !63 and released as 0.9.2, which this PR now points at. Reproduced and re-tested locally with a toolchain file that sets the standard the same way.The recipe is kept upstream in the library repository under
packaging/hunter/, so later versions stay in sync.