Skip to content

Commit

Permalink
Merge pull request #45 from denehoffman/release-plz-2024-10-24T15-48-24Z
Browse files Browse the repository at this point in the history
chore: release v0.12.2
  • Loading branch information
denehoffman authored Oct 24, 2024
2 parents 02a62fe + 16c4ed8 commit 63a8774
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.2](https://github.com/denehoffman/ganesh/compare/v0.12.1...v0.12.2) - 2024-10-24

### Fixed

- change default tolerances to be a bit more realistic

## [0.12.1](https://github.com/denehoffman/ganesh/compare/v0.12.0...v0.12.1) - 2024-10-21

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ganesh"
version = "0.12.1"
version = "0.12.2"
edition = "2021"
description = "Function minimization in Rust, simplified"
documentation = "https://docs.rs/ganesh"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ This should output
╒══════════════════════════════════════════════════════════════════════════════════════════════╕
│ FIT RESULTS │
╞════════════════════════════════════════════╤════════════════════╤═════════════╤══════════════╡
│ Status: Converged │ fval: +4.219E-16#fcn: 159 │ #grad: 159
│ Status: Converged │ fval: +2.281E-4#fcn: 76 │ #grad: 76
├────────────────────────────────────────────┴────────────────────┴─────────────┴──────────────┤
│ Message: term_f = STDDEV │
├───────╥──────────────┬──────────────╥──────────────┬──────────────┬──────────────┬───────────┤
│ Par # ║ Value │ Uncertainty ║ Initial │ -Bound │ +Bound │ At Limit? │
├───────╫──────────────┼──────────────╫──────────────┼──────────────┼──────────────┼───────────┤
│ 0 ║ +1.000E0 │ +7.071E-1 ║ +2.000E0 │ -inf │ +inf │ │
│ 1 ║ +1.000E0 │ +1.416E0 ║ +2.000E0 │ -inf │ +inf │ │
│ 0 ║ +1.001E0 │ +8.461E-1 ║ +2.000E0 │ -inf │ +inf │ │
│ 1 ║ +1.003E0 │ +1.695E0 ║ +2.000E0 │ -inf │ +inf │ │
└───────╨──────────────┴──────────────╨──────────────┴──────────────┴──────────────┴───────────┘
```

Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@
//!╒══════════════════════════════════════════════════════════════════════════════════════════════╕
//!│ FIT RESULTS │
//!╞════════════════════════════════════════════╤════════════════════╤═════════════╤══════════════╡
//!│ Status: Converged │ fval: +4.219E-16 │ #fcn: 159 │ #grad: 159
//!│ Status: Converged │ fval: +2.281E-16 │ #fcn: 76 │ #grad: 76
//!├────────────────────────────────────────────┴────────────────────┴─────────────┴──────────────┤
//!│ Message: term_f = STDDEV │
//!├───────╥──────────────┬──────────────╥──────────────┬──────────────┬──────────────┬───────────┤
//!│ Par # ║ Value │ Uncertainty ║ Initial │ -Bound │ +Bound │ At Limit? │
//!├───────╫──────────────┼──────────────╫──────────────┼──────────────┼──────────────┼───────────┤
//!│ 0 ║ +1.000E0 │ +7.071E-1 ║ +2.000E0 │ -inf │ +inf │ │
//!│ 1 ║ +1.000E0 │ +1.416E0 ║ +2.000E0 │ -inf │ +inf │ │
//!│ 0 ║ +1.001E0 │ +8.461E-1 ║ +2.000E0 │ -inf │ +inf │ │
//!│ 1 ║ +1.003E0 │ +1.695E0 ║ +2.000E0 │ -inf │ +inf │ │
//!└───────╨──────────────┴──────────────╨──────────────┴──────────────┴──────────────┴───────────┘
//! ```
//!
Expand Down

0 comments on commit 63a8774

Please sign in to comment.