Prepare for emergency release.

This commit is contained in:
Richard Kimberly Heck 2020-02-06 15:10:50 -05:00
parent 194a45270c
commit ae1544fd51
3 changed files with 36 additions and 4 deletions

View File

@ -1,5 +1,22 @@
Public release of LyX version 2.3.4 Public release of LyX version 2.3.4-2
=================================== =====================================
This is an emergency release that fixes two bugs in 2.3.4.
The first, bug #11728, caused a five-second delay when attempting
to save files on Windows. This was a side effect of the fix for #10091
and reminds us why it would be good to have more testing on Windows.
The other bug is discussed in this thread
https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg210294.html
and concerns a crash related to the math toolbar. This was due to an
uninitialize buffer_ member revealed by the fix for #11586.
All LyX users are encouraged to upgrade to 2.3.4-2.
The original announcement for 2.3.4 follows.
=====
We are proud to announce the release of LyX 2.3.4. This is the fourth We are proud to announce the release of LyX 2.3.4. This is the fourth
maintenance release in the 2.3.x series. maintenance release in the 2.3.x series.

15
NEWS
View File

@ -1,3 +1,18 @@
What's new in version 2.3.4-2?
------------------------------
This is an emergency release that fixes two bugs in 2.3.4.
The first, bug #11728, caused a five-second delay when attempting
to save files on Windows. This was a side effect of the fix for #10091
and reminds us why it would be good to have more testing on Windows.
The other bug is discussed in this thread
https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg210294.html
and concerns a crash related to the math toolbar. This was due to an
uninitialize buffer_ member revealed by the fix for #11586.
What's new in version 2.3.4? What's new in version 2.3.4?
---------------------------- ----------------------------

View File

@ -1,9 +1,9 @@
dnl Process with autoconf to generate configure script -*- sh -*- dnl Process with autoconf to generate configure script -*- sh -*-
AC_INIT(LyX,2.3.4,[lyx-devel@lists.lyx.org],[lyx]) AC_INIT(LyX,2.3.4-2,[lyx-devel@lists.lyx.org],[lyx])
AC_PRESERVE_HELP_ORDER AC_PRESERVE_HELP_ORDER
# Use ISO format only. The frontend needs to parse this # Use ISO format only. The frontend needs to parse this
AC_SUBST(LYX_DATE, ["2020-01-12"]) AC_SUBST(LYX_DATE, ["2020-02-07"])
AC_PREREQ(2.65) AC_PREREQ(2.65)
AC_CONFIG_SRCDIR(src/main.cpp) AC_CONFIG_SRCDIR(src/main.cpp)
AC_CONFIG_HEADERS([config.h]) AC_CONFIG_HEADERS([config.h])