Skip to content

Commit

Permalink
Bump up version number and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
kinnala committed Nov 30, 2021
1 parent be9642f commit b9da2d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b9da2d4

Please sign in to comment.