From 31cadb9cd509e5ab771a752af796254f82879d3b Mon Sep 17 00:00:00 2001 From: carlos-adir Date: Sat, 9 Sep 2023 18:49:20 +0200 Subject: [PATCH] Increase version and mark [X] on line integration --- README.md | 2 +- pyproject.toml | 2 +- src/compmec/nurbs/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5911734..cc40fe0 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ For now, it supports only 1D-objects (curves). * [X] Projection of point in curve * [X] Intersection of two curves * [X] Derivative of curves -* [ ] Line Integral +* [X] Line Integral * [X] Curve fitting * [X] Function fitting * [X] Points fitting diff --git a/pyproject.toml b/pyproject.toml index 5ee015d..bbe5043 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "compmec-nurbs" -version = "1.0.6" +version = "1.0.7" description = "" readme = "README.md" authors = ["Carlos Adir "] diff --git a/src/compmec/nurbs/__init__.py b/src/compmec/nurbs/__init__.py index 31df0f5..d023305 100644 --- a/src/compmec/nurbs/__init__.py +++ b/src/compmec/nurbs/__init__.py @@ -4,7 +4,7 @@ from compmec.nurbs.functions import Function from compmec.nurbs.knotspace import GeneratorKnotVector, KnotVector -__version__ = "0.1.6" +__version__ = "1.0.7" if __name__ == "__main__": pass