Skip to content

Commit

Permalink
v1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljprice committed Dec 2, 2024
1 parent b57c6ef commit 3d3ead5
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 17 deletions.
6 changes: 5 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
Contributors (for updated list, use git shortlog -s -n -e):
Daniel Price <[email protected]> (main contact)
Harro Verkouter <[email protected]>
James Wetter <[email protected]>
Joachim Frieben <[email protected]>
Harro Verkouter <[email protected]>
Hiroyuki Ito <[email protected]>
Mark Hutchison <[email protected]>
Terrence Tricco <[email protected]>
Aard Keimpema <[email protected]>
Benson Muite <[email protected]>
Fabian P. Schmidt <[email protected]>
10 changes: 7 additions & 3 deletions LATEST.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Changes in v1.4.1
Changes in v1.4.2
------------------
- quieter output from mp4 device
- bug fix in release workflow
- 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
24 changes: 12 additions & 12 deletions configure
Original file line number Diff line number Diff line change
@@ -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.1.
# Generated by GNU Autoconf 2.72 for giza 1.4.2.
#
# Report bugs to <[email protected]>.
#
Expand Down Expand Up @@ -614,8 +614,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='giza'
PACKAGE_TARNAME='giza'
PACKAGE_VERSION='1.4.1'
PACKAGE_STRING='giza 1.4.1'
PACKAGE_VERSION='1.4.2'
PACKAGE_STRING='giza 1.4.2'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_URL='http://danieljprice.github.io/giza'

Expand Down Expand Up @@ -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.1 to adapt to many kinds of systems.
'configure' configures giza 1.4.2 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -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.1:";;
short | recursive ) echo "Configuration of giza 1.4.2:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1584,7 +1584,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
giza configure 1.4.1
giza configure 1.4.2
generated by GNU Autoconf 2.72

Copyright (C) 2023 Free Software Foundation, Inc.
Expand Down Expand Up @@ -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.1, which was
It was created by giza $as_me 1.4.2, which was
generated by GNU Autoconf 2.72. Invocation command line was

$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -3370,7 +3370,7 @@ fi

# Define the identity of the package.
PACKAGE='giza'
VERSION='1.4.1'
VERSION='1.4.2'


printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
Expand Down Expand Up @@ -4998,7 +4998,7 @@ GIZA_VERSION_MAJOR=1

GIZA_VERSION_MINOR=4

GIZA_VERSION_MICRO=1
GIZA_VERSION_MICRO=2

#
# The following specify the interface version numbers for giza.
Expand All @@ -5014,7 +5014,7 @@ GIZA_VERSION_MICRO=1
#
LT_CURRENT=1

LT_REVISION=1
LT_REVISION=2

LT_AGE=1

Expand Down Expand Up @@ -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.1, which was
This file was extended by giza $as_me 1.4.2, which was
generated by GNU Autoconf 2.72. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -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.1
giza config.status 1.4.2
configured by $0, generated by GNU Autoconf 2.72,
with options \\"\$ac_cs_config\\"

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -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,1)
m4_define(giza_version_micro,2)
AC_INIT([giza],
[giza_version_major.giza_version_minor.giza_version_micro],
[[email protected]],[],
Expand Down
1 change: 1 addition & 0 deletions docs/news/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

<div id="content">
<h1>News</h1>
<p>2024.12.02: <a href="https://github.com/danieljprice/giza/releases">1.4.2</a> released.</p>
<p>2023.11.30: <a href="https://github.com/danieljprice/giza/releases">1.4.1</a> released.</p>
<p>2023.11.28: <a href="https://github.com/danieljprice/giza/releases">1.4.0</a> released.</p>
<p>2022.03.28: <a href="https://github.com/danieljprice/giza/releases">1.3.2</a> released.</p>
Expand Down

0 comments on commit 3d3ead5

Please sign in to comment.