Skip to content

Commit

Permalink
beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Nov 6, 2022
1 parent 04ee6ce commit d615451
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion MagickCore/linked-list.c
Expand Up @@ -1024,7 +1024,7 @@ MagickPrivate void SetHeadElementInLinkedList(LinkedListInfo *list_info,
if (element == list_info->head)
return;
prev=list_info->head;
while(prev != (ElementInfo *) NULL)
while (prev != (ElementInfo *) NULL)
{
if (prev->next == element)
{
Expand Down
36 changes: 18 additions & 18 deletions configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for ImageMagick 7.1.0-52.
# Generated by GNU Autoconf 2.71 for ImageMagick 7.1.0-53.
#
# Report bugs to <https://github.com/ImageMagick/ImageMagick/issues>.
#
Expand Down Expand Up @@ -621,8 +621,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='ImageMagick'
PACKAGE_TARNAME='ImageMagick'
PACKAGE_VERSION='7.1.0-52'
PACKAGE_STRING='ImageMagick 7.1.0-52'
PACKAGE_VERSION='7.1.0-53'
PACKAGE_STRING='ImageMagick 7.1.0-53'
PACKAGE_BUGREPORT='https://github.com/ImageMagick/ImageMagick/issues'
PACKAGE_URL='https://imagemagick.org'

Expand Down Expand Up @@ -1892,7 +1892,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 ImageMagick 7.1.0-52 to adapt to many kinds of systems.
\`configure' configures ImageMagick 7.1.0-53 to adapt to many kinds of systems.

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

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

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of ImageMagick 7.1.0-52:";;
short | recursive ) echo "Configuration of ImageMagick 7.1.0-53:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -2268,7 +2268,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
ImageMagick configure 7.1.0-52
ImageMagick configure 7.1.0-53
generated by GNU Autoconf 2.71

Copyright (C) 2021 Free Software Foundation, Inc.
Expand Down Expand Up @@ -3219,7 +3219,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 ImageMagick $as_me 7.1.0-52, which was
It was created by ImageMagick $as_me 7.1.0-53, which was
generated by GNU Autoconf 2.71. Invocation command line was

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

# Define the identity of the package.
PACKAGE='ImageMagick'
VERSION='7.1.0-52'
VERSION='7.1.0-53'


# Some tools Automake needs.
Expand Down Expand Up @@ -5145,11 +5145,11 @@ MAGICK_MINOR_VERSION=1

MAGICK_MICRO_VERSION=0

MAGICK_PATCHLEVEL_VERSION=52
MAGICK_PATCHLEVEL_VERSION=53

MAGICK_VERSION=7.1.0-52
MAGICK_VERSION=7.1.0-53

MAGICK_GIT_REVISION=36d3408b5:20221106
MAGICK_GIT_REVISION=04ee6cec5:20221106


# Substitute library versioning
Expand All @@ -5171,17 +5171,17 @@ MAGICKPP_LIBRARY_VERSION_INFO=$MAGICKPP_LIBRARY_CURRENT:$MAGICKPP_LIBRARY_REVISI

PACKAGE_BASE_VERSION=7.1.0

PACKAGE_PATCHLEVEL_VERSION=52
PACKAGE_PATCHLEVEL_VERSION=53

if test "n" = 'y'; then
PACKAGE_VERSION_ADDENDUM='-52 beta'
if test "y" = 'y'; then
PACKAGE_VERSION_ADDENDUM='-53 beta'
else
PACKAGE_VERSION_ADDENDUM=-52
PACKAGE_VERSION_ADDENDUM=-53
fi

PACKAGE_LIB_VERSION=0x710

PACKAGE_LIB_VERSION_NUMBER=7,1,0,52
PACKAGE_LIB_VERSION_NUMBER=7,1,0,53

PACKAGE_RELEASE_DATE=2022-11-06

Expand Down Expand Up @@ -38981,7 +38981,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 ImageMagick $as_me 7.1.0-52, which was
This file was extended by ImageMagick $as_me 7.1.0-53, which was
generated by GNU Autoconf 2.71. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -39050,7 +39050,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="\\
ImageMagick config.status 7.1.0-52
ImageMagick config.status 7.1.0-53
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"

Expand Down
4 changes: 2 additions & 2 deletions m4/version.m4
Expand Up @@ -27,8 +27,8 @@ m4_define([magick_name], [ImageMagick])
m4_define([magick_major_version], [7])
m4_define([magick_minor_version], [1])
m4_define([magick_micro_version], [0])
m4_define([magick_patchlevel_version], [52])
m4_define([magick_is_beta], [n])
m4_define([magick_patchlevel_version], [53])
m4_define([magick_is_beta], [y])
m4_define([magick_bugreport],
[https://github.com/ImageMagick/ImageMagick/issues])
m4_define([magick_url], [https://imagemagick.org])
Expand Down

0 comments on commit d615451

Please sign in to comment.