Skip to content

Commit

Permalink
release 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrek committed Jan 7, 2022
1 parent 2dd2f0a commit 3b16da2
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 11 deletions.
17 changes: 17 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
0.9.2 - 7 Jan 2022

+ CURLINFO_HTTP_VERSION (Rudi Grinberg)
+ CURLOPT_XFERINFOFUNCTION
+ alternative READFUNCTION2/WRITEFUNCTION2 with an ability to pause transfer
* fix READFUNCTION deadlock on exception
+ CURLMOPT_MAX_TOTAL_CONNECTIONS (Nicolas Ojeda Bar)
* configure: allow setting CURLCFLAGS, CURLLIBS, LIBCURL_VERSION (Nicolas Ojeda Bar)
+ CURLOPT_TCP_FASTOPEN (Daniel Woelfel)
+ Add support for MultiSSL mode (Nicolas Ojeda Bar)
+ CURLOPT_DOH_URL (Daniel Woelfel)
+ Curl.Multi.poll (Romain Beauxis)
+ CURLOPT_BUFFERSIZE (Daniel Woelfel)
+ CURLINFO_ACTIVESOCKET (Romain Beauxis)
* Multi: more useful errors
+ Make it possible to add a name to a MIME part (Bertrand Bonnefoy-Claudet)

0.9.1 - 13 Feb 2020

+ HTTP_VERSION_3
Expand Down
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ NAME=@PACKAGE_NAME@-@PACKAGE_VERSION@
release:
git tag -a -m @PACKAGE_VERSION@ @PACKAGE_VERSION@
git archive --prefix=$(NAME)/ @PACKAGE_VERSION@ | gzip > $(NAME).tar.gz
gpg -a -b $(NAME).tar.gz
gpg -a -b $(NAME).tar.gz -o $(NAME).tar.gz.asc

clean:
@rm -f $(TARGETS) *~ *.cm* *$(EXT_OBJ) *$(EXT_LIB) *$(EXT_DLL) .depend core
Expand Down
18 changes: 9 additions & 9 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 ocurl 0.9.1.
# Generated by GNU Autoconf 2.69 for ocurl 0.9.2.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -577,8 +577,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='ocurl'
PACKAGE_TARNAME='ocurl'
PACKAGE_VERSION='0.9.1'
PACKAGE_STRING='ocurl 0.9.1'
PACKAGE_VERSION='0.9.2'
PACKAGE_STRING='ocurl 0.9.2'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''

Expand Down Expand Up @@ -1264,7 +1264,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 ocurl 0.9.1 to adapt to many kinds of systems.
\`configure' configures ocurl 0.9.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1326,7 +1326,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of ocurl 0.9.1:";;
short | recursive ) echo "Configuration of ocurl 0.9.2:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1410,7 +1410,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
ocurl configure 0.9.1
ocurl configure 0.9.2
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1708,7 +1708,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 ocurl $as_me 0.9.1, which was
It was created by ocurl $as_me 0.9.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -9279,7 +9279,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 ocurl $as_me 0.9.1, which was
This file was extended by ocurl $as_me 0.9.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -9341,7 +9341,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="\\
ocurl config.status 0.9.1
ocurl config.status 0.9.2
configured by $0, generated by GNU Autoconf 2.69,
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
Expand Up @@ -2,7 +2,7 @@ dnl
dnl ocurl autoconf input
dnl

AC_INIT(ocurl,0.9.1)
AC_INIT(ocurl,0.9.2)

MIN_LIBCURL_VERSION=7.28.0

Expand Down

0 comments on commit 3b16da2

Please sign in to comment.