From b9da2d40b4830845bd9a7e2bb5394be1be8b8ce4 Mon Sep 17 00:00:00 2001 From: Tom Gustafsson Date: Tue, 30 Nov 2021 11:44:29 +0200 Subject: [PATCH] Bump up version number and update README --- README.md | 11 ++++++----- setup.cfg | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 81bcb6801..c6c7e724f 100644 --- a/README.md +++ b/README.md @@ -57,11 +57,8 @@ def laplace(u, v, _): def rhs(v, _): return 1.0 * v -A = asm(laplace, basis) -b = asm(rhs, basis) -# or: -# A = laplace.assemble(basis) -# b = rhs.assemble(basis) +A = laplace.assemble(basis) +b = rhs.assemble(basis) # Dirichlet boundary conditions A, b = enforce(A, b, D=m.boundary_nodes()) @@ -224,6 +221,10 @@ with respect to documented and/or tested features. ### Unreleased +### [5.1.0] - 2021-11-30 + +- Added: `skfem.helpers.mul` for matrix multiplication +- Added: `Basis.split` will now also split `ElementVector` into its components - Fixed: `ElementDG` was not included in the wildcard import - Fixed: Automatic visualization of `MeshTri2` and `MeshQuad2` in Jupyter notebooks raised exception diff --git a/setup.cfg b/setup.cfg index 76c76a177..09bebf09e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = scikit-fem -version = 5.0.0 +version = 5.1.0 author = Tom Gustafsson description = Simple finite element assemblers url = https://github.com/kinnala/scikit-fem