[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3785-gae1139
From: |
Andrew J. Schorr |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3785-gae1139c |
Date: |
Mon, 8 Jul 2019 09:25:33 -0400 (EDT) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, master has been updated
via ae1139c068702ede2d35002bdd14199a2c9eb4d8 (commit)
from 43d85982525f24742a14b30a888d224f961a01c0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=ae1139c068702ede2d35002bdd14199a2c9eb4d8
commit ae1139c068702ede2d35002bdd14199a2c9eb4d8
Author: Andrew J. Schorr <address@hidden>
Date: Mon Jul 8 09:25:01 2019 -0400
Bump gawk_api_major_version due to incompatible namespace changes.
diff --git a/ChangeLog b/ChangeLog
index 31bb6a5..9dda704 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2019-07-08 Andrew J. Schorr <address@hidden>
+
+ * gawkapi.h (gawk_api_major_version): Bump from 2 to 3 because the
+ namespace changes altered the function signatures in gawk_api_t.
+ And add a comment at the top of the structure with a reminder that
+ the version number should be bumped whenever the struct is altered
+ in any way.
+
2019-06-30 Arnold D. Robbins <address@hidden>
* interpret.h (r_interpret): Fix two more cases of warning
diff --git a/gawkapi.h b/gawkapi.h
index 3db8990..9d9cf87 100644
--- a/gawkapi.h
+++ b/gawkapi.h
@@ -296,7 +296,7 @@ typedef struct awk_two_way_processor {
awk_const struct awk_two_way_processor *awk_const next; /* for use by
gawk */
} awk_two_way_processor_t;
-#define gawk_api_major_version 2
+#define gawk_api_major_version 3
#define gawk_api_minor_version 0
/* Current version of the API. */
@@ -458,6 +458,9 @@ typedef void *awk_ext_id_t; /* opaque type for extension id
*/
/*
* The API into gawk. Lots of functions here. We hope that they are
* logically organized.
+ *
+ * !!! If you make any changes to this structure, please remember to bump !!!
+ * !!! gawk_api_major_version and/or gawk_api_minor_version. !!!
*/
typedef struct gawk_api {
/* First, data fields. */
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 8 ++++++++
gawkapi.h | 5 ++++-
2 files changed, 12 insertions(+), 1 deletion(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3785-gae1139c,
Andrew J. Schorr <=