From 8d6fe7aca04704029b29bc435214c0063880f3f8 Mon Sep 17 00:00:00 2001 From: Jonathan Rampersad Date: Tue, 17 Jun 2025 18:37:17 +0000 Subject: [PATCH 1/2] Update README.md Signed-off-by: Jonathan Rampersad --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9f180a..afb7e14 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ print(f"Derivative of f1: {df1}") # > Derivative of f1: 4x - 3 # 4. Get the 2nd derivative: 4 -df1 = f1.nth_derivative(2) -print(f"2nd Derivative of f1: {df1}") +ddf1 = f1.nth_derivative(2) +print(f"2nd Derivative of f1: {ddf1}") # > Derivative of f1: 4 # 5. Find roots analytically using the quadratic formula -- 2.49.0 From 32d6cfeeeac735f3629b85d5521c3428bb1291a4 Mon Sep 17 00:00:00 2001 From: Jonathan Rampersad Date: Tue, 17 Jun 2025 18:37:33 +0000 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f46ff93..6cc7a6a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] # --- Core Metadata --- name = "polysolve" -version = "0.2.0" +version = "0.2.1" authors = [ { name="Jonathan Rampersad", email="jonathan@jono-rams.work" }, ] -- 2.49.0