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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# changelog

## 0.10.2 (2026-03-05)

### added
- chemistry test suite

## 0.10.1 (2025-01-31)

### added
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 = "geonum"
version = "0.10.1"
version = "0.10.2"
edition = "2021"
repository = "https://github.com/mxfactorial/geonum"
description = "geometric number library supporting unlimited dimensions with O(1) complexity"
Expand Down
4 changes: 1 addition & 3 deletions tests/calculus_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,7 @@ fn it_computes_powers_from_angle_ratios() {
// for x^n, power n appears naturally in angle ratios: (x^n angle) / (x angle) = n

let x_value: f64 = 2.0;
let theta = 0.523598775; // π/6

let x = Geonum::new(x_value, theta, 3.14159265359);
let x = Geonum::new(x_value, 1.0, 6.0);
let x_squared = x * x;
let x_cubed = x_squared * x;
let x_fourth = x_cubed * x;
Expand Down
Loading