Commit a1af4124 authored by Alexandre Julliard's avatar Alexandre Julliard

Release 7.15.

parent 0b1e8d8b
......@@ -389,6 +389,7 @@ Davide Pizzetti
David Faure
David Gay
David Golding
David Gow
David Grant
David Hammerton
David Hedberg
......@@ -1564,6 +1565,7 @@ Seth Shelnutt
Shachar Shemesh
Shanren Zhou
Shaun Morris
Shaun Ren
Shawn M. Chapla
Sheri Steeves
Shi Quan He
......
Wine version 7.14
Wine version 7.15
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for Wine 7.14.
# Generated by GNU Autoconf 2.71 for Wine 7.15.
#
# Report bugs to <wine-devel@winehq.org>.
#
......@@ -611,8 +611,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='Wine'
PACKAGE_TARNAME='wine'
PACKAGE_VERSION='7.14'
PACKAGE_STRING='Wine 7.14'
PACKAGE_VERSION='7.15'
PACKAGE_STRING='Wine 7.15'
PACKAGE_BUGREPORT='wine-devel@winehq.org'
PACKAGE_URL='https://www.winehq.org'
......@@ -2287,7 +2287,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 Wine 7.14 to adapt to many kinds of systems.
\`configure' configures Wine 7.15 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
......@@ -2357,7 +2357,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of Wine 7.14:";;
short | recursive ) echo "Configuration of Wine 7.15:";;
esac
cat <<\_ACEOF
......@@ -2624,7 +2624,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
Wine configure 7.14
Wine configure 7.15
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
......@@ -3108,7 +3108,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 Wine $as_me 7.14, which was
It was created by Wine $as_me 7.15, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
......@@ -22899,7 +22899,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 Wine $as_me 7.14, which was
This file was extended by Wine $as_me 7.15, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
......@@ -22963,7 +22963,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="\\
Wine config.status 7.14
Wine config.status 7.15
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"
......
......@@ -13,7 +13,6 @@ create-release:
sed -e '/^The source/,/^----------/d
/^----------/,$d
/^Bugs fixed/i--------
s/^ *\([0-9][0-9]*\) / - #\1/
s/^\*\*\*/###/' ANNOUNCE >announce.md
- release-cli create
--name "Wine $VERSION"
......
......@@ -149,24 +149,20 @@ print NEW "----------------------------------------------------------------\n\n"
printf NEW "Bugs fixed in %s (total %u):\n\n", $new, scalar( keys %bugs );
foreach my $id (sort {$a <=> $b} keys %bugs)
{
printf NEW " %6d %s\n", $id, unescape( $bugs{$id} );
printf NEW " - #%-6d %s\n", $id, unescape( $bugs{$id} );
}
print NEW "\n----------------------------------------------------------------\n\n";
print NEW "Changes since $old:\n\n";
print NEW "Changes since $old:\n";
open LOG, "-|" or exec "git", "shortlog", "wine-$old..HEAD" or die "cannot run git shortlog";
while (<LOG>)
{
if (/^(\S.*)\s\(\d+\):$/) { $authors{$1} = 1; }
next if /^$/;
if (/^(\S.*)\s\(\d+\):$/) { $authors{$1} = 1; print NEW "\n"; }
print NEW $_;
}
close LOG;
while (<ANNOUNCE>) { last if /^--$/; }
print NEW "--\n";
while (<ANNOUNCE>) { print NEW $_; }
close ANNOUNCE;
close NEW;
update_file( "ANNOUNCE" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment