summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGünther Wagner <info@gunibert.de>2022-06-19 10:33:53 +0200
committerGünther Wagner <info@gunibert.de>2022-06-19 10:33:53 +0200
commitdd2bee073331dd02c5319ccfa76b97d1a490f1a3 (patch)
treed05f007a2f8e5e91b0de52acc928bdbbed83c75e
parent683bfdd41c2ae92d41b9984d79f285dff5bdff2a (diff)
downloadlibrest-dd2bee073331dd02c5319ccfa76b97d1a490f1a3.tar.gz
Release 0.9.1
-rw-r--r--.gitignore1
-rw-r--r--NEWS4
-rw-r--r--meson.build4
-rw-r--r--rest/meson.build1
4 files changed, 8 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 95370dc..2f9f775 100644
--- a/.gitignore
+++ b/.gitignore
@@ -69,3 +69,4 @@ tests/proxy
tests/proxy-continuous
tests/threaded
tests/xml
+rust \ No newline at end of file
diff --git a/NEWS b/NEWS
index 04bc8b1..ff1cf6e 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,10 @@ Overview of changes for 0.91
============================
* removed RestAuth object
* added an demo application to showcase librest
+* removed OAuth1 Proxy
+* added soupapiversion to pkg-config file in order to check the which soup version
+ this library got built with
+* build against libsoup3 by default
Overview of changes for 0.9
===========================
diff --git a/meson.build b/meson.build
index db4eee6..5fb5956 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project('rest', 'c',
- version: '0.9.0',
+ version: '0.9.1',
license: 'LGPL2.1+',
- meson_version: '>= 0.53',
+ meson_version: '>= 0.56',
)
# Versioning
diff --git a/rest/meson.build b/rest/meson.build
index 5378ec7..545221b 100644
--- a/rest/meson.build
+++ b/rest/meson.build
@@ -96,6 +96,7 @@ if get_option('introspection')
namespace: 'Rest',
symbol_prefix: 'rest',
identifier_prefix: 'Rest',
+ export_packages: librest_pkg_string,
includes: [ 'GObject-2.0', 'Gio-2.0', 'Soup-@0@'.format(libsoup_api_version) ],
extra_args: librest_gir_extra_args,
install: true,