From 130d568065322e36dea846ead1a55f9475aad3b3 Mon Sep 17 00:00:00 2001 From: romeric Date: Sat, 21 Jul 2018 18:31:40 +0100 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 11 +++++++++++ Florence/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a7394374..b66fd1571 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log + +**V0.1.5** + +This release brings mainly performance improvements and bug fixes + +1. Computing sparsity pattern ahead of time is now available. Florence can now assemble the global FE matrices in many different ways, bypassing scipy's format. +2. Fast mass matrix assembly. Different flavours of this impelementation is available. +3. Optimal quad and hex quadrature points +4. A lot minor improvements and bug fixes + + **V0.1.4** Highly bumped version. Proper support for PyPi from this release onwards. Please refer to the very recent 0.1 version for major updates. diff --git a/Florence/__init__.py b/Florence/__init__.py index 3ce1eb8ea..7cfa11615 100644 --- a/Florence/__init__.py +++ b/Florence/__init__.py @@ -10,4 +10,4 @@ from .PostProcessing import * from .FiniteElements import AssembleMass, AssembleForm -__version__ = "0.1.4.dev0" +__version__ = "0.1.5"