[libsoup/hsts: 98/101] Update versioning of new apis to current target
- From: Claudio Saavedra <csaavedra src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libsoup/hsts: 98/101] Update versioning of new apis to current target
- Date: Thu, 20 Sep 2018 14:27:41 +0000 (UTC)
commit b9536eaade4911823b915f609bf8b265ec4b7377
Author: Claudio Saavedra <csaavedra igalia com>
Date: Wed Sep 19 17:21:48 2018 +0300
Update versioning of new apis to current target
configure.ac | 2 +-
libsoup/soup-hsts-enforcer-db.c | 2 +-
libsoup/soup-hsts-enforcer-db.h | 4 ++--
libsoup/soup-hsts-enforcer.c | 10 +++++-----
libsoup/soup-hsts-enforcer.h | 12 ++++++------
libsoup/soup-version.h.in | 18 +++++++++---------
meson.build | 2 +-
7 files changed, 25 insertions(+), 25 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 16168d39..5848b662 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ dnl *** Initialize automake and set version ***
dnl *******************************************
m4_define([soup_major_version], [2])
-m4_define([soup_minor_version], [64])
+m4_define([soup_minor_version], [65])
m4_define([soup_micro_version], [0])
AC_PREREQ(2.63)
diff --git a/libsoup/soup-hsts-enforcer-db.c b/libsoup/soup-hsts-enforcer-db.c
index 9db23edc..da863341 100644
--- a/libsoup/soup-hsts-enforcer-db.c
+++ b/libsoup/soup-hsts-enforcer-db.c
@@ -109,7 +109,7 @@ soup_hsts_enforcer_db_get_property (GObject *object, guint prop_id,
*
* Return value: the new #SoupHSTSEnforcer
*
- * Since: 2.64
+ * Since: 2.66
**/
SoupHSTSEnforcer *
soup_hsts_enforcer_db_new (const char *filename)
diff --git a/libsoup/soup-hsts-enforcer-db.h b/libsoup/soup-hsts-enforcer-db.h
index cd4b77b4..99819426 100644
--- a/libsoup/soup-hsts-enforcer-db.h
+++ b/libsoup/soup-hsts-enforcer-db.h
@@ -39,10 +39,10 @@ typedef struct {
#define SOUP_HSTS_ENFORCER_DB_FILENAME "filename"
-SOUP_AVAILABLE_IN_2_64
+SOUP_AVAILABLE_IN_2_66
GType soup_hsts_enforcer_db_get_type (void);
-SOUP_AVAILABLE_IN_2_64
+SOUP_AVAILABLE_IN_2_66
SoupHSTSEnforcer *soup_hsts_enforcer_db_new (const char *filename);
G_END_DECLS
diff --git a/libsoup/soup-hsts-enforcer.c b/libsoup/soup-hsts-enforcer.c
index c74816d6..93c65bc5 100644
--- a/libsoup/soup-hsts-enforcer.c
+++ b/libsoup/soup-hsts-enforcer.c
@@ -181,7 +181,7 @@ soup_hsts_enforcer_class_init (SoupHSTSEnforcerClass *hsts_enforcer_class)
*
* Returns: a new #SoupHSTSEnforcer
*
- * Since: 2.64
+ * Since: 2.66
**/
SoupHSTSEnforcer *
soup_hsts_enforcer_new (void)
@@ -314,7 +314,7 @@ soup_hsts_enforcer_insert_policy (SoupHSTSEnforcer *hsts_enforcer,
* will not expire and will be enforced during the lifetime of
* @hsts_enforcer's #SoupSession.
*
- * Since: 2.64
+ * Since: 2.66
**/
void
soup_hsts_enforcer_set_policy (SoupHSTSEnforcer *hsts_enforcer,
@@ -358,7 +358,7 @@ soup_hsts_enforcer_set_policy (SoupHSTSEnforcer *hsts_enforcer,
* that is permanent to the lifetime of @hsts_enforcer's #SoupSession
* and doesn't expire.
*
- * Since: 2.64
+ * Since: 2.66
**/
void
soup_hsts_enforcer_set_session_policy (SoupHSTSEnforcer *hsts_enforcer,
@@ -547,7 +547,7 @@ soup_hsts_enforcer_session_feature_init (SoupSessionFeatureInterface *feature_in
*
* Returns: %TRUE if @hsts_enforcer storage is persistent or %FALSE otherwise.
*
- * Since: 2.64
+ * Since: 2.66
**/
gboolean
soup_hsts_enforcer_is_persistent (SoupHSTSEnforcer *hsts_enforcer)
@@ -567,7 +567,7 @@ soup_hsts_enforcer_is_persistent (SoupHSTSEnforcer *hsts_enforcer)
* Returns: %TRUE if access to @domain should happen over HTTPS, false
* otherwise.
*
- * Since: 2.64
+ * Since: 2.66
**/
gboolean
soup_hsts_enforcer_has_valid_policy (SoupHSTSEnforcer *hsts_enforcer,
diff --git a/libsoup/soup-hsts-enforcer.h b/libsoup/soup-hsts-enforcer.h
index d1b2d6d9..74d7e552 100644
--- a/libsoup/soup-hsts-enforcer.h
+++ b/libsoup/soup-hsts-enforcer.h
@@ -56,20 +56,20 @@ typedef struct {
void (*_libsoup_reserved4) (void);
} SoupHSTSEnforcerClass;
-SOUP_AVAILABLE_IN_2_64
+SOUP_AVAILABLE_IN_2_66
GType soup_hsts_enforcer_get_type (void);
-SOUP_AVAILABLE_IN_2_64
+SOUP_AVAILABLE_IN_2_66
SoupHSTSEnforcer *soup_hsts_enforcer_new (void);
-SOUP_AVAILABLE_IN_2_64
+SOUP_AVAILABLE_IN_2_66
gboolean soup_hsts_enforcer_is_persistent (SoupHSTSEnforcer *hsts_enforcer);
-SOUP_AVAILABLE_IN_2_64
+SOUP_AVAILABLE_IN_2_66
gboolean soup_hsts_enforcer_has_valid_policy (SoupHSTSEnforcer *hsts_enforcer,
const char *domain);
-SOUP_AVAILABLE_IN_2_64
+SOUP_AVAILABLE_IN_2_66
void soup_hsts_enforcer_set_policy (SoupHSTSEnforcer *hsts_enforcer,
SoupHSTSPolicy *policy);
-SOUP_AVAILABLE_IN_2_64
+SOUP_AVAILABLE_IN_2_66
void soup_hsts_enforcer_set_session_policy (SoupHSTSEnforcer *hsts_enforcer,
const char *domain,
gboolean include_subdomains);
diff --git a/libsoup/soup-version.h.in b/libsoup/soup-version.h.in
index 3dbd0a5b..5d2362b8 100644
--- a/libsoup/soup-version.h.in
+++ b/libsoup/soup-version.h.in
@@ -66,7 +66,7 @@ G_BEGIN_DECLS
#define SOUP_VERSION_2_56 (G_ENCODE_VERSION (2, 56))
#define SOUP_VERSION_2_58 (G_ENCODE_VERSION (2, 58))
#define SOUP_VERSION_2_62 (G_ENCODE_VERSION (2, 62))
-#define SOUP_VERSION_2_64 (G_ENCODE_VERSION (2, 64))
+#define SOUP_VERSION_2_66 (G_ENCODE_VERSION (2, 66))
/* evaluates to the current stable version; for development cycles,
* this means the next stable target
@@ -375,18 +375,18 @@ G_BEGIN_DECLS
# define SOUP_AVAILABLE_IN_2_62 _SOUP_EXTERN
#endif
-#if SOUP_VERSION_MIN_REQUIRED >= SOUP_VERSION_2_64
-# define SOUP_DEPRECATED_IN_2_64 G_DEPRECATED
-# define SOUP_DEPRECATED_IN_2_64_FOR(f) G_DEPRECATED_FOR(f)
+#if SOUP_VERSION_MIN_REQUIRED >= SOUP_VERSION_2_66
+# define SOUP_DEPRECATED_IN_2_66 G_DEPRECATED
+# define SOUP_DEPRECATED_IN_2_66_FOR(f) G_DEPRECATED_FOR(f)
#else
-# define SOUP_DEPRECATED_IN_2_64
-# define SOUP_DEPRECATED_IN_2_64_FOR(f)
+# define SOUP_DEPRECATED_IN_2_66
+# define SOUP_DEPRECATED_IN_2_66_FOR(f)
#endif
-#if SOUP_VERSION_MAX_ALLOWED < SOUP_VERSION_2_64
-# define SOUP_AVAILABLE_IN_2_64 G_UNAVAILABLE(2, 64) _SOUP_EXTERN
+#if SOUP_VERSION_MAX_ALLOWED < SOUP_VERSION_2_66
+# define SOUP_AVAILABLE_IN_2_66 G_UNAVAILABLE(2, 66) _SOUP_EXTERN
#else
-# define SOUP_AVAILABLE_IN_2_64 _SOUP_EXTERN
+# define SOUP_AVAILABLE_IN_2_66 _SOUP_EXTERN
#endif
SOUP_AVAILABLE_IN_2_42
diff --git a/meson.build b/meson.build
index 9f603f19..65453957 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libsoup', 'c',
- version: '2.64.0',
+ version: '2.65.0',
meson_version : '>=0.47',
license : 'LGPL2',
default_options : 'c_std=c89')
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]