From 913a4d0a04b868539c8104a1da946185e181e3bc Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sat, 23 Nov 2024 13:01:37 +0000 Subject: [PATCH] configure.ac: release 1.5.0 No major features added. The main change is the removal of `mootif` and `gtk` backends and the build fix for better C23 standard compatibility. ** New `-initramfs` option to pass a separate initramfs file to the bootloader. ** `--with-gtk` and `--with-x11` `./configure` options (and backend code) are removed. `xski` binary is not built anymore. ** Build fix against `-std=c23` toolchain. ** Pull in 'bootloader' code from `linux-4.19.241`. ** Switch from `lex` and `yacc` to `flex` and `bison` as dependencies. --- NEWS | 17 +++++++++++++++++ configure.ac | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 26ce84f..83e435a 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,20 @@ +* What's New with Ski 1.5.0 - 2024-11-23 + +No major features added. The main change is the removal of `mootif` and +`gtk` backends and the build fix for better C23 standard compatibility. + +** New `-initramfs` option to pass a separate initramfs file to the +bootloader. + +** `--with-gtk` and `--with-x11` `./configure` options (and backend +code) are removed. `xski` binary is not built anymore. + +** Build fix against `-std=c23` toolchain. + +** Pull in 'bootloader' code from `linux-4.19.241`. + +** Switch from `lex` and `yacc` to `flex` and `bison` as dependencies. + * What's New with Ski 1.4.0 - 2022-08-19 It's a new fork based on lates 1.3.2 version available. It's new home diff --git a/configure.ac b/configure.ac index 72e65a2..f3414fa 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ AC_PREREQ([2.29]) -AC_INIT([ski],[1.4.0],[slyich@gmail.com],[ski],[https://github.com/trofi/ski]) +AC_INIT([ski],[1.5.0],[slyich@gmail.com],[ski],[https://github.com/trofi/ski]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz dist-lzip no-dist-gzip]) AM_SILENT_RULES([yes])