[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Getfem-commits] (no subject)
From: |
Yves Renard |
Subject: |
[Getfem-commits] (no subject) |
Date: |
Mon, 25 May 2020 12:50:47 -0400 (EDT) |
branch: master
commit d5d2336dba04b4460fd879d01d5a728db843f5e1
Author: Yves Renard <address@hidden>
AuthorDate: Mon May 25 18:48:57 2020 +0200
preparing for 5.4.1 patch
---
configure.ac | 4 ++--
doc/doxygen/Doxyfile | 2 +-
doc/sphinx/source/replaces.txt | 2 +-
doc/sphinx/source/whatsnew/5.4.1.rst | 17 +++++++++++++++++
doc/sphinx/source/whatsnew/index.rst | 1 +
interface/src/python/setup.py.in | 2 +-
interface/tests/matlab-octave/check_spmat.m | 2 +-
7 files changed, 24 insertions(+), 6 deletions(-)
diff --git a/configure.ac b/configure.ac
index 3a3a19c..a19ba7e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,10 +27,10 @@ dnl thus, updating cache ./config.cache avoided.
define([AC_CACHE_LOAD], )dnl
define([AC_CACHE_SAVE], )dnl
-AC_INIT(getfem, 5.4)
+AC_INIT(getfem, 5.4.1)
MAJOR_VERSION="5"
MINOR_VERSION="4"
-PATCH_VERSION=""
+PATCH_VERSION="1"
AC_CONFIG_SRCDIR([install-sh])
AC_CONFIG_MACRO_DIR([m4])
diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile
index ca9f3a4..dbd10c3 100644
--- a/doc/doxygen/Doxyfile
+++ b/doc/doxygen/Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME = GetFEM
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 5.4
+PROJECT_NUMBER = 5.4.1
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
diff --git a/doc/sphinx/source/replaces.txt b/doc/sphinx/source/replaces.txt
index 5710048..709d8f3 100644
--- a/doc/sphinx/source/replaces.txt
+++ b/doc/sphinx/source/replaces.txt
@@ -18,7 +18,7 @@
.. |sLU| replace:: *SuperLU*
.. |mumps| replace:: *MUMPS*
.. |sphinx| replace:: *Sphinx*
-.. |version| replace:: 5.4
+.. |version| replace:: 5.4.1
.. |licyears| replace:: 2004-2020
.. |gfi| replace:: *getfem-interface*
.. |m| replace:: `mesh`
diff --git a/doc/sphinx/source/whatsnew/5.4.1.rst
b/doc/sphinx/source/whatsnew/5.4.1.rst
new file mode 100644
index 0000000..e64b1ce
--- /dev/null
+++ b/doc/sphinx/source/whatsnew/5.4.1.rst
@@ -0,0 +1,17 @@
+.. include:: ../replaces.txt
+
+**************************
+ What's New in |gf| 5.4.1
+**************************
+
+|gf| 5.4.1 is a patch version that fixes a problem with multithread openblas
0.3.8, used in particular in the LTS Ubuntu 20.04.
+
+Released version, 2020/05/22.
+
+The main changes are:
+
+ * Adding a --disable-multithread-blas option to the configure to fix the
problem with openblas 0.3.8
+
+ * Support for export in VTU format.
+
+
diff --git a/doc/sphinx/source/whatsnew/index.rst
b/doc/sphinx/source/whatsnew/index.rst
index ad5a299..aec8c4e 100644
--- a/doc/sphinx/source/whatsnew/index.rst
+++ b/doc/sphinx/source/whatsnew/index.rst
@@ -11,6 +11,7 @@ for anyone wishing to stay up-to-date after a new release.
.. toctree::
:maxdepth: 2
+ 5.4.1.rst
5.4.rst
5.3.rst
5.2.rst
diff --git a/interface/src/python/setup.py.in b/interface/src/python/setup.py.in
index f0bed8d..f2e926a 100644
--- a/interface/src/python/setup.py.in
+++ b/interface/src/python/setup.py.in
@@ -68,7 +68,7 @@ getfemmod = Extension('_getfem',
setup (name = 'getfem-interface',
license='LGPL',
- version = '5.3',
+ version = '5.4.1',
maintainer="Yves Renard",
maintainer_email="address@hidden",
description = "This is the getfem-python-interface module",
diff --git a/interface/tests/matlab-octave/check_spmat.m
b/interface/tests/matlab-octave/check_spmat.m
index 1837f7a..8c3b856 100644
--- a/interface/tests/matlab-octave/check_spmat.m
+++ b/interface/tests/matlab-octave/check_spmat.m
@@ -34,7 +34,7 @@ function check_spmat(iverbose,idebug)
asserterr('gf_spmat(''empty'',2:3)');
asserterr('gf_spmat(''empty'',0)');
end;
- is_octave = exist('octave_config_info') || exist('octave_core_file_options');
+ is_octave = exist('OCTAVE_VERSION', 'builtin');
% TEST EMPTY COPY FULL
A = gf_spmat('empty', 5,6);
B = gf_spmat('empty', 11111);