[geocode-glib] docs: Change UNRELEASED ‘Since’ tags to 3.23.1 for the next release
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [geocode-glib] docs: Change UNRELEASED ‘Since’ tags to 3.23.1 for the next release
- Date: Fri, 27 Jan 2017 16:18:48 +0000 (UTC)
commit d02f56cdea65d7d7790a83c2c0cf31563e7a7879
Author: Philip Withnall <withnall endlessm com>
Date: Wed Jan 25 14:17:47 2017 +0000
docs: Change UNRELEASED ‘Since’ tags to 3.23.1 for the next release
https://bugzilla.gnome.org/show_bug.cgi?id=777745
geocode-glib/geocode-bounding-box.c | 2 +-
geocode-glib/geocode-location.c | 2 +-
geocode-glib/geocode-mock-backend.c | 12 ++++++------
geocode-glib/geocode-mock-backend.h | 4 ++--
geocode-glib/geocode-nominatim.c | 2 +-
geocode-glib/geocode-place.c | 2 +-
6 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/geocode-glib/geocode-bounding-box.c b/geocode-glib/geocode-bounding-box.c
index cb32258..196ab44 100644
--- a/geocode-glib/geocode-bounding-box.c
+++ b/geocode-glib/geocode-bounding-box.c
@@ -285,7 +285,7 @@ geocode_bounding_box_new (gdouble top,
* Both instances must be non-%NULL.
*
* Returns: %TRUE if the instances are equal, %FALSE otherwise
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
gboolean
geocode_bounding_box_equal (GeocodeBoundingBox *a,
diff --git a/geocode-glib/geocode-location.c b/geocode-glib/geocode-location.c
index bb04ebf..2423eab 100644
--- a/geocode-glib/geocode-location.c
+++ b/geocode-glib/geocode-location.c
@@ -132,7 +132,7 @@ geocode_location_get_property (GObject *object,
* Both instances must be non-%NULL.
*
* Returns: %TRUE if the instances are equal, %FALSE otherwise
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
gboolean
geocode_location_equal (GeocodeLocation *a,
diff --git a/geocode-glib/geocode-mock-backend.c b/geocode-glib/geocode-mock-backend.c
index 7a370cc..44a904d 100644
--- a/geocode-glib/geocode-mock-backend.c
+++ b/geocode-glib/geocode-mock-backend.c
@@ -107,7 +107,7 @@
* g_assert_cmpuint (query_log->len, ==, 1);
* ]|
*
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
struct _GeocodeMockBackend {
@@ -404,7 +404,7 @@ geocode_mock_backend_reverse_resolve (GeocodeBackend *backend,
*
* Returns: (transfer full): a new #GeocodeMockBackend
*
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
GeocodeMockBackend *
geocode_mock_backend_new (void)
@@ -436,7 +436,7 @@ geocode_mock_backend_new (void)
* Exactly one of @results and @error must be set. Empty result sets are
* represented as a %GEOCODE_ERROR_NO_MATCHES error.
*
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
void
geocode_mock_backend_add_forward_result (GeocodeMockBackend *self,
@@ -481,7 +481,7 @@ geocode_mock_backend_add_forward_result (GeocodeMockBackend *self,
* Exactly one of @results and @error must be set. Empty result sets are
* represented as a %GEOCODE_ERROR_NOT_SUPPORTED error.
*
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
void
geocode_mock_backend_add_reverse_result (GeocodeMockBackend *self,
@@ -514,7 +514,7 @@ geocode_mock_backend_add_reverse_result (GeocodeMockBackend *self,
*
* This effectively resets the mock backend to its initial state.
*
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
void
geocode_mock_backend_clear (GeocodeMockBackend *self)
@@ -544,7 +544,7 @@ geocode_mock_backend_clear (GeocodeMockBackend *self)
*
* Returns: (transfer none) (element-type GeocodeMockBackendQuery): potentially
* empty sequence of forward and reverse query details
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
GPtrArray *
geocode_mock_backend_get_query_log (GeocodeMockBackend *self)
diff --git a/geocode-glib/geocode-mock-backend.h b/geocode-glib/geocode-mock-backend.h
index d88a146..d3c4c42 100644
--- a/geocode-glib/geocode-mock-backend.h
+++ b/geocode-glib/geocode-mock-backend.h
@@ -33,7 +33,7 @@ G_BEGIN_DECLS
* All the fields in the #GeocodeMockBackend structure are private and should
* never be accessed directly.
*
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
#define GEOCODE_TYPE_MOCK_BACKEND (geocode_mock_backend_get_type ())
G_DECLARE_FINAL_TYPE (GeocodeMockBackend, geocode_mock_backend,
@@ -71,7 +71,7 @@ void geocode_mock_backend_clear (GeocodeMockBackend *self);
* (for forward queries) or the %GEOCODE_ERROR_NOT_SUPPORTED error (for reverse
* queries), rather than an empty @results list.
*
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
typedef struct {
/* Request */
diff --git a/geocode-glib/geocode-nominatim.c b/geocode-glib/geocode-nominatim.c
index 2769ed9..41227d2 100644
--- a/geocode-glib/geocode-nominatim.c
+++ b/geocode-glib/geocode-nominatim.c
@@ -1508,7 +1508,7 @@ geocode_nominatim_class_init (GeocodeNominatimClass *klass)
* [user agent](https://tools.ietf.org/html/rfc7231#section-5.5.3)
* string.
*
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
properties[PROP_USER_AGENT] = g_param_spec_string ("user-agent",
"User agent",
diff --git a/geocode-glib/geocode-place.c b/geocode-glib/geocode-place.c
index 637e23b..a00b11b 100644
--- a/geocode-glib/geocode-place.c
+++ b/geocode-glib/geocode-place.c
@@ -660,7 +660,7 @@ bbox_equal0 (GeocodeBoundingBox *a,
* Both instances must be non-%NULL.
*
* Returns: %TRUE if the instances are equal, %FALSE otherwise
- * Since: UNRELEASED
+ * Since: 3.23.1
*/
gboolean
geocode_place_equal (GeocodePlace *a,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]