From fca752b62db237feeb8f5cc974e03c7f5f1a2f63 Mon Sep 17 00:00:00 2001 From: Daniel Price Date: Tue, 3 Dec 2024 08:57:25 +1100 Subject: [PATCH] v1.4.3 --- LATEST.md | 14 ++++++-------- NEWS | 15 +++++++++++++++ configure | 24 ++++++++++++------------ configure.ac | 2 +- docs/news/index.html | 1 + 5 files changed, 35 insertions(+), 21 deletions(-) diff --git a/LATEST.md b/LATEST.md index e13a129..cbbccab 100644 --- a/LATEST.md +++ b/LATEST.md @@ -1,8 +1,6 @@ -Changes in v1.4.2 ------------------- -- bug fix with build on Mac OS: explicitly request static libs for libgiza.a and libpglot.a -- bug fix with pkg-config failing to find cairo.h -- bug fix with weird black screen on Mac OS after clicking in a plot window (#55) -- issues in test suite fixed (#50) -- bug fix with giza_circle (#52) -- added automated build and test suite to github actions workflow +Changes in v1.4.3 +----------------- +- bug fix with parsing longer escape sequences that contain shorter ones, like \beta (containing \b) and \gamma (containing \ga) +- added \odot symbol +- revert marker 1 to point plotting, not resized with character height + diff --git a/NEWS b/NEWS index 29fba50..a3bee9c 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,18 @@ +Changes in v1.4.3 +----------------- +- bug fix with parsing longer escape sequences that contain shorter ones, like \beta (containing \b) and \gamma (containing \ga) +- added \odot symbol +- revert marker 1 to point plotting, not resized with character height + +Changes in v1.4.2 +------------------ +- bug fix with build on Mac OS: explicitly request static libs for libgiza.a and libpglot.a +- bug fix with pkg-config failing to find cairo.h +- bug fix with weird black screen on Mac OS after clicking in a plot window (#55) +- issues in test suite fixed (#50) +- bug fix with giza_circle (#52) +- added automated build and test suite to github actions workflow + v1.4.1 ------ - quieter output from mp4 device diff --git a/configure b/configure index f001912..56e3440 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.72 for giza 1.4.2. +# Generated by GNU Autoconf 2.72 for giza 1.4.3. # # Report bugs to . # @@ -614,8 +614,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='giza' PACKAGE_TARNAME='giza' -PACKAGE_VERSION='1.4.2' -PACKAGE_STRING='giza 1.4.2' +PACKAGE_VERSION='1.4.3' +PACKAGE_STRING='giza 1.4.3' PACKAGE_BUGREPORT='daniel.price@monash.edu' PACKAGE_URL='http://danieljprice.github.io/giza' @@ -1383,7 +1383,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -'configure' configures giza 1.4.2 to adapt to many kinds of systems. +'configure' configures giza 1.4.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1454,7 +1454,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of giza 1.4.2:";; + short | recursive ) echo "Configuration of giza 1.4.3:";; esac cat <<\_ACEOF @@ -1584,7 +1584,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -giza configure 1.4.2 +giza configure 1.4.3 generated by GNU Autoconf 2.72 Copyright (C) 2023 Free Software Foundation, Inc. @@ -1896,7 +1896,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by giza $as_me 1.4.2, which was +It was created by giza $as_me 1.4.3, which was generated by GNU Autoconf 2.72. Invocation command line was $ $0$ac_configure_args_raw @@ -3370,7 +3370,7 @@ fi # Define the identity of the package. PACKAGE='giza' - VERSION='1.4.2' + VERSION='1.4.3' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -4998,7 +4998,7 @@ GIZA_VERSION_MAJOR=1 GIZA_VERSION_MINOR=4 -GIZA_VERSION_MICRO=2 +GIZA_VERSION_MICRO=3 # # The following specify the interface version numbers for giza. @@ -5014,7 +5014,7 @@ GIZA_VERSION_MICRO=2 # LT_CURRENT=1 -LT_REVISION=2 +LT_REVISION=3 LT_AGE=1 @@ -17367,7 +17367,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by giza $as_me 1.4.2, which was +This file was extended by giza $as_me 1.4.3, which was generated by GNU Autoconf 2.72. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17436,7 +17436,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -giza config.status 1.4.2 +giza config.status 1.4.3 configured by $0, generated by GNU Autoconf 2.72, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index a37c4d3..b8c4576 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ(2.61) m4_define(giza_version_major,1) m4_define(giza_version_minor,4) -m4_define(giza_version_micro,2) +m4_define(giza_version_micro,3) AC_INIT([giza], [giza_version_major.giza_version_minor.giza_version_micro], [daniel.price@monash.edu],[], diff --git a/docs/news/index.html b/docs/news/index.html index 957fb0d..565aa98 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -21,6 +21,7 @@

News

+

2024.12.03: 1.4.3 released.

2024.12.02: 1.4.2 released.

2023.11.30: 1.4.1 released.

2023.11.28: 1.4.0 released.