From d80c8715ac06ec33401da4599ca82472b6bd28ec Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Tue, 17 Sep 2024 15:23:11 +0100 Subject: [PATCH] version++ (#37) --- Cargo.toml | 2 +- README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c6c25e2..5ec07a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ python = ["dep:openssl"] [package] name = "ndelement" -version = "0.1.0-dev" +version = "0.1.1" edition = "2021" authors = ["Matthew Scroggs "] description = "n-dimensional finite element definition library." diff --git a/README.md b/README.md index a04b751..7497371 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ndelement is an open-source library written in Rust that can be used to create n You can use the latest release of ndelement by adding the following to `[dependencies]` section of your Cargo.toml file: ```toml -ndelement = "0.1.0" +ndelement = "0.1.1" ``` ### Python diff --git a/pyproject.toml b/pyproject.toml index e7700a5..6faa1be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "ndelement" -version = "0.1.0-dev4" +version = "0.1.1" description = "n-dimensional finite element definition library." readme = "README.md" requires-python = ">=3.8"