summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2021-02-23 14:27:20 -0600
committerPatrick Griffis <pgriffis@igalia.com>2021-02-23 14:27:20 -0600
commit0388ea47f1137f8ac9254db4fe7d583e3bc2e7be (patch)
tree3d3c09dcccdd9197e142df3eb561fb0d133275d2
parent587e43cf50d672d91aa923eb6ac60a28f3ea3a2e (diff)
downloadlibsoup-2.99.1.tar.gz
2.99.12.99.1
-rw-r--r--NEWS5
-rw-r--r--docs/reference/build-howto.xml8
-rw-r--r--docs/reference/libsoup-3.0-sections.txt8
-rwxr-xr-xlibsoup/generate-version-header.py2
-rw-r--r--libsoup/soup-version.h.in4
-rw-r--r--meson.build2
6 files changed, 17 insertions, 12 deletions
diff --git a/NEWS b/NEWS
index 1753e6b8..1a8226d1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+Changes in libsoup from 2.72.0 to 2.99.1:
+
+ * This is a major ABI breaking release that can be installed in parallel with 2.7x.
+ Numerous API have been changed which is documented on https://libsoup.org
+
Changes in libsoup from 2.71.1 to 2.72.0:
* Fix critical after cancelling a message that failed auth [Carlos Garcia Campos]
diff --git a/docs/reference/build-howto.xml b/docs/reference/build-howto.xml
index de4e831f..b54697f4 100644
--- a/docs/reference/build-howto.xml
+++ b/docs/reference/build-howto.xml
@@ -37,19 +37,19 @@ LIBSOUP_CFLAGS="$LIBSOUP_CFLAGS -DSOUP_VERSION_MAX_ALLOWED=SOUP_VERSION_3_2"</pr
<para>Or with Meson:</para>
<informalexample><programlisting>add_project_arguments(
- '-DSOUP_VERSION_MIN_REQUIRED=SOUP_VERSION_3_0',
- '-DSOUP_VERSION_MAX_ALLOWED=SOUP_VERSION_3_2',
+ '-DSOUP_VERSION_MIN_REQUIRED=SOUP_VERSION_2_99',
+ '-DSOUP_VERSION_MAX_ALLOWED=SOUP_VERSION_3_0',
language: 'c'
)</programlisting></informalexample>
<para>The <literal>SOUP_VERSION_MIN_REQUIRED</literal> declaration states that the code is not
expected to compile on versions of <application>libsoup</application> older than the
- indicated version (here, 3.0), and so the compiler should print warnings if the code uses
+ indicated version, and so the compiler should print warnings if the code uses
functions that were deprecated as of that release.</para>
<para>The <literal>SOUP_VERSION_MAX_ALLOWED</literal> declaration states that the code
<emphasis>is</emphasis> expected to compile on versions of
- <application>libsoup</application> up to the indicated version (here, 3.2), and so, when
+ <application>libsoup</application> up to the indicated version, and so, when
compiling the program against a newer version than that, the compiler should print warnings
if the code uses functions that did not yet exist in the max-allowed release.</para>
diff --git a/docs/reference/libsoup-3.0-sections.txt b/docs/reference/libsoup-3.0-sections.txt
index b749d246..294301e5 100644
--- a/docs/reference/libsoup-3.0-sections.txt
+++ b/docs/reference/libsoup-3.0-sections.txt
@@ -817,16 +817,16 @@ SOUP_CHECK_VERSION
<SUBSECTION>
SOUP_VERSION_MIN_REQUIRED
SOUP_VERSION_MAX_ALLOWED
-SOUP_VERSION_2_90
+SOUP_VERSION_2_99
SOUP_VERSION_3_0
<SUBSECTION Private>
SOUP_AVAILABLE_IN_ALL
-SOUP_AVAILABLE_IN_2_90
+SOUP_AVAILABLE_IN_2_99
SOUP_AVAILABLE_IN_3_0
SOUP_DEPRECATED_IN_3_0
-SOUP_DEPRECATED_IN_2_90
+SOUP_DEPRECATED_IN_2_99
SOUP_DEPRECATED_IN_3_0_FOR
-SOUP_DEPRECATED_IN_2_90_FOR
+SOUP_DEPRECATED_IN_2_99_FOR
SOUP_ENCODE_VERSION
SOUP_VAR
SOUP_VERSION_CUR_STABLE
diff --git a/libsoup/generate-version-header.py b/libsoup/generate-version-header.py
index 3ddc7f16..8dbf413d 100755
--- a/libsoup/generate-version-header.py
+++ b/libsoup/generate-version-header.py
@@ -17,7 +17,7 @@ versions = []
if major == 2:
# Specific to 3.x dev releases
- versions.append((2, 90))
+ versions.append((2, 99))
versions.append((3, 0))
else:
minor_max = minor if minor != 0 and is_stable(minor) else minor + 1
diff --git a/libsoup/soup-version.h.in b/libsoup/soup-version.h.in
index 8c0cf30d..b20976a7 100644
--- a/libsoup/soup-version.h.in
+++ b/libsoup/soup-version.h.in
@@ -82,8 +82,8 @@ G_BEGIN_DECLS
#if SOUP_VERSION_MAX_ALLOWED < SOUP_VERSION_MIN_REQUIRED
#error "SOUP_VERSION_MAX_ALLOWED must be >= SOUP_VERSION_MIN_REQUIRED"
#endif
-#if SOUP_VERSION_MIN_REQUIRED < SOUP_VERSION_2_90
-#error "SOUP_VERSION_MIN_REQUIRED must be >= SOUP_VERSION_2_90"
+#if SOUP_VERSION_MIN_REQUIRED < SOUP_VERSION_2_99
+#error "SOUP_VERSION_MIN_REQUIRED must be >= SOUP_VERSION_2_99"
#endif
#define SOUP_AVAILABLE_IN_ALL _SOUP_EXTERN
diff --git a/meson.build b/meson.build
index 724826a9..24506ad1 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libsoup', 'c',
- version: '2.91.0',
+ version: '2.99.1',
meson_version : '>= 0.53',
license : 'LGPL2',
default_options : 'c_std=c99')