From 61b68b716bbf1c0c125c160acb0c1acfccae12d3 Mon Sep 17 00:00:00 2001 From: Ingvar Stepanyan Date: Wed, 4 Oct 2023 00:02:07 +0100 Subject: [PATCH] Bump C# ABI version --- crates/bindings-csharp/Runtime/bindings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bindings-csharp/Runtime/bindings.c b/crates/bindings-csharp/Runtime/bindings.c index f3aeae6075..44970e1f9b 100644 --- a/crates/bindings-csharp/Runtime/bindings.c +++ b/crates/bindings-csharp/Runtime/bindings.c @@ -779,5 +779,5 @@ __preinit__10_init_csharp() { // __attribute__((export_name("SPACETIME_ABI_VERSION"))) - // doesn't work on non-functions, must specify on command line -const uint32_t SPACETIME_ABI_VERSION = /* 4.0 */ (4 << 16) | 0; +const uint32_t SPACETIME_ABI_VERSION = /* 5.0 */ (5 << 16) | 0; const uint8_t SPACETIME_ABI_VERSION_IS_ADDR = 1;