Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions ceres-solver-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

--

## [0.5.1] 2025-12-13

### Fixed

- Building issues caused by Rust edtion bump to 2024, changed back to 2021.

### Changed

- Revert Rust edition from 2024 back to 2021, set resolver explicitly to 3 to support MSRV-aware dependency resolution.

## [0.5.0] 2025-12-13

### Changed
Expand Down
5 changes: 3 additions & 2 deletions ceres-solver-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "ceres-solver-sys"
version = "0.5.0"
edition = "2024"
version = "0.5.1"
edition = "2021"
resolver = "3"
readme = "README.md"
description = "Unsafe Rust bindings for the Ceres Solver"
repository = "https://github.com/light-curve/ceres-solver-rs"
Expand Down