Skip to content

Commit

Permalink
Releasing 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
paumard committed Oct 25, 2019
1 parent ea20fb5 commit c13df3d
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 14 deletions.
34 changes: 33 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,38 @@
commit unknown
Author: Thibaut Paumard <[email protected]>
Date: Tue Oct 23 16:47:04 2019 +0200
Date: Tue Oct 25 15:15:04 2019 +0200

Releasing 1.4.2

commit ea20fb536aae58f008a282feaa12868e72ce78d9
Author: Thibaut Paumard <[email protected]>
Date: Fri Oct 25 14:33:14 2019 +0200

plugins/python: support Python 3.8

With Python 3.8, modules are no longer link with libpython by default. Therefore
codes that are meant for embedding Python must pass --embed to python-configure
in order to get the complete set of flags to do so.

commit d9fe7496b7172f28c22760627ff201ab5595c9e1
Author: Thibaut Paumard <[email protected]>
Date: Thu Oct 24 12:29:08 2019 +0200

EquatorialHotSpot: fix "==" that was meant to be "="

In XML backward compatibility code.

commit 557f90287d0c4225f960ba035409ab7a85b8d01b
Author: Thibaut Paumard <[email protected]>
Date: Thu Oct 24 12:26:10 2019 +0200

GridData2D: explicitly convert size_t to long

Implicit narrowing conversion is an error for some compilers.

commit 9f912f8233fc1cc42c05bd4338eec2fd8085a5fa
Author: Thibaut Paumard <[email protected]>
Date: Wed Oct 23 16:48:04 2019 +0200

Releasing 1.4.1

Expand Down
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.4.2 2019/10/25 BUG
* plugins/python: support Python 3.8
* Astrobj::EquatorialHotSpot: fix XML compatibility code
* GridData2D: make one conversion explicit to please clang

1.4.1 2019/10/23 BUG
* MPI: fix computation of number of quantities to evaluate
* check suite: use all files in doc/examples
Expand Down
22 changes: 11 additions & 11 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.69 for Gyoto 1.4.1.
# Generated by GNU Autoconf 2.69 for Gyoto 1.4.2.
#
# Report bugs to <[email protected]>.
#
Expand Down Expand Up @@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='Gyoto'
PACKAGE_TARNAME='gyoto'
PACKAGE_VERSION='1.4.1'
PACKAGE_STRING='Gyoto 1.4.1'
PACKAGE_VERSION='1.4.2'
PACKAGE_STRING='Gyoto 1.4.2'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_URL=''

Expand Down Expand Up @@ -1488,7 +1488,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 Gyoto 1.4.1 to adapt to many kinds of systems.
\`configure' configures Gyoto 1.4.2 to adapt to many kinds of systems.

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

Expand Down Expand Up @@ -1560,7 +1560,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of Gyoto 1.4.1:";;
short | recursive ) echo "Configuration of Gyoto 1.4.2:";;
esac
cat <<\_ACEOF

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

Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -2508,7 +2508,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 Gyoto $as_me 1.4.1, which was
It was created by Gyoto $as_me 1.4.2, which was
generated by GNU Autoconf 2.69. Invocation command line was

$ $0 $@
Expand Down Expand Up @@ -3484,7 +3484,7 @@ fi

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


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -15742,7 +15742,7 @@ ac_config_headers="$ac_config_headers config.h include/GyotoConfig.h"
# C: current; R: revision; A: age
# Linux library name is: libgyoto.so.(C-A).A.R
VERSINFO_C=8
VERSINFO_R=0
VERSINFO_R=1
VERSINFO_A=0
VERSINFO=${VERSINFO_C}:${VERSINFO_R}:${VERSINFO_A}

Expand Down Expand Up @@ -21960,7 +21960,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 Gyoto $as_me 1.4.1, which was
This file was extended by Gyoto $as_me 1.4.2, which was
generated by GNU Autoconf 2.69. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -22026,7 +22026,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
Gyoto config.status 1.4.1
Gyoto config.status 1.4.2
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dnl without any warranty.


AC_PREREQ([2.69])
AC_INIT([Gyoto], [1.4.1], [[email protected]])
AC_INIT([Gyoto], [1.4.2], [[email protected]])
gyoto_test_CXXFLAGS=${CXXFLAGS+set}
gyoto_test_CPPFLAGS=${CPPFLAGS+set}
AC_CANONICAL_SYSTEM
Expand All @@ -27,7 +27,7 @@ AC_SUBST([VERBATIM], [])
# C: current; R: revision; A: age
# Linux library name is: libgyoto.so.(C-A).A.R
VERSINFO_C=8
VERSINFO_R=0
VERSINFO_R=1
VERSINFO_A=0
VERSINFO=${VERSINFO_C}:${VERSINFO_R}:${VERSINFO_A}
AC_SUBST([VERSINFO])
Expand Down

0 comments on commit c13df3d

Please sign in to comment.