[libsoup/hsts: 29/36] Update versioning of new apis to current target



commit fb9dcb609cf9a108f5fa5f5b35485ad0a894852b
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 ++++++------
 meson.build                     |  2 +-
 6 files changed, 16 insertions(+), 16 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/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]