diff --git a/CHANGELOG.md b/CHANGELOG.md index 99611cd523..2e7a728d58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,11 @@ tag versions. The Bond compiler (`gbc`) and different versioning scheme, following the Haskell community's [package versioning policy](https://wiki.haskell.org/Package_versioning_policy). -## Unreleased ## +## 9.0: 2020-05-26 ## +* IDL core version: 3.0 +* C++ version: 9.0.0 +* C# NuGet version: 9.0.0. +* `gbc` & compiler library: 0.12.1.0 ### C++ ### * **Breaking change** MSVC 2013 support has been removed. ([Issue diff --git a/compiler/bond.cabal b/compiler/bond.cabal index 4bc8a34bda..7732ef3881 100644 --- a/compiler/bond.cabal +++ b/compiler/bond.cabal @@ -1,13 +1,13 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.31.2. +-- This file has been generated from package.yaml by hpack version 0.33.0. -- -- see: https://github.com/sol/hpack -- --- hash: b913222488b7035eec255444fe3bf82606f82eb0940c6ae5a4a3af784638c527 +-- hash: 5f829cf187d9630385924b752fae193c51da82b2d9bfc0ef8f38f23a638fc604 name: bond -version: 0.12.0.1 +version: 0.12.1.0 synopsis: Bond schema compiler and code generator description: Bond is a cross-platform framework for handling schematized data. It supports cross-language de/serialization and powerful generic mechanisms for efficiently manipulating data. . This package contains a library for parsing the Bond schema definition language and performing template-based code generation. The library includes built-in templates for generating standard Bond C++ and C# code, as well as utilities for writing custom codegen templates. . The package also contains a command-line compiler/codegen tool, named gbc, which is primarily used to generate code for C++ and C# programs using Bond. category: Language, Compiler, Code Generation diff --git a/compiler/package.yaml b/compiler/package.yaml index 8bf305cc75..a8242f7c8e 100644 --- a/compiler/package.yaml +++ b/compiler/package.yaml @@ -1,5 +1,5 @@ name: bond -version: 0.12.0.1 +version: 0.12.1.0 github: "microsoft/bond" license: MIT author: Adam Sapek diff --git a/compiler/src/Language/Bond/Codegen/Cpp/Types_h.hs b/compiler/src/Language/Bond/Codegen/Cpp/Types_h.hs index bc96bd0253..f16c2a1642 100644 --- a/compiler/src/Language/Bond/Codegen/Cpp/Types_h.hs +++ b/compiler/src/Language/Bond/Codegen/Cpp/Types_h.hs @@ -39,7 +39,7 @@ types_h export_attribute userHeaders enumHeader allocator alloc_ctors_enabled ty #{newlineBeginSep 0 includeHeader userHeaders} #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alias_key_types.h b/compiler/tests/generated/alias_key_types.h index 29709bb8c8..9866ba4d66 100644 --- a/compiler/tests/generated/alias_key_types.h +++ b/compiler/tests/generated/alias_key_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alias_with_allocator_types.h b/compiler/tests/generated/alias_with_allocator_types.h index 0169a2a76c..563dc36096 100644 --- a/compiler/tests/generated/alias_with_allocator_types.h +++ b/compiler/tests/generated/alias_with_allocator_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/aliases_types.cs b/compiler/tests/generated/aliases_types.cs index a17990f5bc..23452b8fb5 100644 --- a/compiler/tests/generated/aliases_types.cs +++ b/compiler/tests/generated/aliases_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0), global::Bond.Type(typeof(List>))] @@ -34,14 +34,14 @@ protected Foo(string fullName, string name) } } - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum EnumToWrap { anEnumValue, } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class WrappingAnEnum { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/aliases_types.h b/compiler/tests/generated/aliases_types.h index 4259a1fee1..71c660ca90 100644 --- a/compiler/tests/generated/aliases_types.h +++ b/compiler/tests/generated/aliases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/alias_key_types.h b/compiler/tests/generated/alloc_ctors/alias_key_types.h index 69897e5afa..57cab380e6 100644 --- a/compiler/tests/generated/alloc_ctors/alias_key_types.h +++ b/compiler/tests/generated/alloc_ctors/alias_key_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/aliases_types.h b/compiler/tests/generated/alloc_ctors/aliases_types.h index 4cfc6bf87c..3859ac304a 100644 --- a/compiler/tests/generated/alloc_ctors/aliases_types.h +++ b/compiler/tests/generated/alloc_ctors/aliases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/attributes_types.h b/compiler/tests/generated/alloc_ctors/attributes_types.h index b45dad8330..d98ab5a570 100644 --- a/compiler/tests/generated/alloc_ctors/attributes_types.h +++ b/compiler/tests/generated/alloc_ctors/attributes_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/basic_types_nsmapped_types.h b/compiler/tests/generated/alloc_ctors/basic_types_nsmapped_types.h index 44d2ad0522..02615eb969 100644 --- a/compiler/tests/generated/alloc_ctors/basic_types_nsmapped_types.h +++ b/compiler/tests/generated/alloc_ctors/basic_types_nsmapped_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/basic_types_types.h b/compiler/tests/generated/alloc_ctors/basic_types_types.h index 3a7c9ad6f1..d72f1a9157 100644 --- a/compiler/tests/generated/alloc_ctors/basic_types_types.h +++ b/compiler/tests/generated/alloc_ctors/basic_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/bond_meta_types.h b/compiler/tests/generated/alloc_ctors/bond_meta_types.h index 229ee2c89e..16fc8226a9 100644 --- a/compiler/tests/generated/alloc_ctors/bond_meta_types.h +++ b/compiler/tests/generated/alloc_ctors/bond_meta_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/complex_types_types.h b/compiler/tests/generated/alloc_ctors/complex_types_types.h index 86ad7d071f..b082e5d8f7 100644 --- a/compiler/tests/generated/alloc_ctors/complex_types_types.h +++ b/compiler/tests/generated/alloc_ctors/complex_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/defaults_types.h b/compiler/tests/generated/alloc_ctors/defaults_types.h index bddeed452e..c0e72ef1fe 100644 --- a/compiler/tests/generated/alloc_ctors/defaults_types.h +++ b/compiler/tests/generated/alloc_ctors/defaults_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/empty_types.h b/compiler/tests/generated/alloc_ctors/empty_types.h index 6c4089778d..d1532a5d67 100644 --- a/compiler/tests/generated/alloc_ctors/empty_types.h +++ b/compiler/tests/generated/alloc_ctors/empty_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/field_modifiers_types.h b/compiler/tests/generated/alloc_ctors/field_modifiers_types.h index 067e7af56b..e2f06332ac 100644 --- a/compiler/tests/generated/alloc_ctors/field_modifiers_types.h +++ b/compiler/tests/generated/alloc_ctors/field_modifiers_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/generics_types.h b/compiler/tests/generated/alloc_ctors/generics_types.h index 5de41658e6..ec681752e3 100644 --- a/compiler/tests/generated/alloc_ctors/generics_types.h +++ b/compiler/tests/generated/alloc_ctors/generics_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/import_types.h b/compiler/tests/generated/alloc_ctors/import_types.h index 837775bb86..f7cd0e56b1 100644 --- a/compiler/tests/generated/alloc_ctors/import_types.h +++ b/compiler/tests/generated/alloc_ctors/import_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/inheritance_types.h b/compiler/tests/generated/alloc_ctors/inheritance_types.h index c93f8ba821..67871d1e18 100644 --- a/compiler/tests/generated/alloc_ctors/inheritance_types.h +++ b/compiler/tests/generated/alloc_ctors/inheritance_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/maybe_blob_types.h b/compiler/tests/generated/alloc_ctors/maybe_blob_types.h index 79f4d72a99..3d2b40bc64 100644 --- a/compiler/tests/generated/alloc_ctors/maybe_blob_types.h +++ b/compiler/tests/generated/alloc_ctors/maybe_blob_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/metadata_edge_cases_types.h b/compiler/tests/generated/alloc_ctors/metadata_edge_cases_types.h index 3dbd30e13a..ffc28f0a36 100644 --- a/compiler/tests/generated/alloc_ctors/metadata_edge_cases_types.h +++ b/compiler/tests/generated/alloc_ctors/metadata_edge_cases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/alloc_ctors/with_enum_header_types.h b/compiler/tests/generated/alloc_ctors/with_enum_header_types.h index 9038df405c..5475324672 100644 --- a/compiler/tests/generated/alloc_ctors/with_enum_header_types.h +++ b/compiler/tests/generated/alloc_ctors/with_enum_header_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/alias_key_types.h b/compiler/tests/generated/allocator/alias_key_types.h index d96bbf62cc..ff45c3a104 100644 --- a/compiler/tests/generated/allocator/alias_key_types.h +++ b/compiler/tests/generated/allocator/alias_key_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/aliases_types.h b/compiler/tests/generated/allocator/aliases_types.h index f570485e57..f0ef5ef4a8 100644 --- a/compiler/tests/generated/allocator/aliases_types.h +++ b/compiler/tests/generated/allocator/aliases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/attributes_types.h b/compiler/tests/generated/allocator/attributes_types.h index bf38205f46..9d085b513d 100644 --- a/compiler/tests/generated/allocator/attributes_types.h +++ b/compiler/tests/generated/allocator/attributes_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/basic_types_nsmapped_types.h b/compiler/tests/generated/allocator/basic_types_nsmapped_types.h index d91c68d394..6c65462a53 100644 --- a/compiler/tests/generated/allocator/basic_types_nsmapped_types.h +++ b/compiler/tests/generated/allocator/basic_types_nsmapped_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/basic_types_types.h b/compiler/tests/generated/allocator/basic_types_types.h index 7d3fbd1cc1..e238697588 100644 --- a/compiler/tests/generated/allocator/basic_types_types.h +++ b/compiler/tests/generated/allocator/basic_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/bond_meta_types.h b/compiler/tests/generated/allocator/bond_meta_types.h index ec30c4d668..eefbf3cd86 100644 --- a/compiler/tests/generated/allocator/bond_meta_types.h +++ b/compiler/tests/generated/allocator/bond_meta_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/complex_types_types.h b/compiler/tests/generated/allocator/complex_types_types.h index 70fe2f793c..2311aeb3b4 100644 --- a/compiler/tests/generated/allocator/complex_types_types.h +++ b/compiler/tests/generated/allocator/complex_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/defaults_types.h b/compiler/tests/generated/allocator/defaults_types.h index fe74615c5f..128cc16dca 100644 --- a/compiler/tests/generated/allocator/defaults_types.h +++ b/compiler/tests/generated/allocator/defaults_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/empty_types.h b/compiler/tests/generated/allocator/empty_types.h index 6c4089778d..d1532a5d67 100644 --- a/compiler/tests/generated/allocator/empty_types.h +++ b/compiler/tests/generated/allocator/empty_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/field_modifiers_types.h b/compiler/tests/generated/allocator/field_modifiers_types.h index 39ee2c4338..99c2fadf50 100644 --- a/compiler/tests/generated/allocator/field_modifiers_types.h +++ b/compiler/tests/generated/allocator/field_modifiers_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/generics_types.h b/compiler/tests/generated/allocator/generics_types.h index 708fe459f4..396006f961 100644 --- a/compiler/tests/generated/allocator/generics_types.h +++ b/compiler/tests/generated/allocator/generics_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/import_types.h b/compiler/tests/generated/allocator/import_types.h index b7f045646b..ca70bec9d5 100644 --- a/compiler/tests/generated/allocator/import_types.h +++ b/compiler/tests/generated/allocator/import_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/inheritance_types.h b/compiler/tests/generated/allocator/inheritance_types.h index 3513289d26..fab94517f7 100644 --- a/compiler/tests/generated/allocator/inheritance_types.h +++ b/compiler/tests/generated/allocator/inheritance_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/maybe_blob_types.h b/compiler/tests/generated/allocator/maybe_blob_types.h index 88337f1184..18cca25795 100644 --- a/compiler/tests/generated/allocator/maybe_blob_types.h +++ b/compiler/tests/generated/allocator/maybe_blob_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/metadata_edge_cases_types.h b/compiler/tests/generated/allocator/metadata_edge_cases_types.h index c0f9dd74af..dc6b00c2b8 100644 --- a/compiler/tests/generated/allocator/metadata_edge_cases_types.h +++ b/compiler/tests/generated/allocator/metadata_edge_cases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/allocator/with_enum_header_types.h b/compiler/tests/generated/allocator/with_enum_header_types.h index 127526f0ed..200c21d338 100644 --- a/compiler/tests/generated/allocator/with_enum_header_types.h +++ b/compiler/tests/generated/allocator/with_enum_header_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/attributes_types.cs b/compiler/tests/generated/attributes_types.cs index be81da05e4..4a4e9abc0d 100644 --- a/compiler/tests/generated/attributes_types.cs +++ b/compiler/tests/generated/attributes_types.cs @@ -19,7 +19,7 @@ namespace tests [global::Bond.Attribute("EnumAttribute1", "one")] [global::Bond.Attribute("EnumAttribute2", "two")] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum Enum { Value1, @@ -28,7 +28,7 @@ public enum Enum [global::Bond.Attribute("StructAttribute1", "one")] [global::Bond.Attribute("StructAttribute2", "two")] [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Attribute("FieldAttribute1", "one")] diff --git a/compiler/tests/generated/attributes_types.h b/compiler/tests/generated/attributes_types.h index fd5503e174..88e8978109 100644 --- a/compiler/tests/generated/attributes_types.h +++ b/compiler/tests/generated/attributes_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/basic_types_nsmapped_types.cs b/compiler/tests/generated/basic_types_nsmapped_types.cs index 7dbb7a1611..10bd9320e3 100644 --- a/compiler/tests/generated/basic_types_nsmapped_types.cs +++ b/compiler/tests/generated/basic_types_nsmapped_types.cs @@ -19,7 +19,7 @@ namespace nsmapped [global::Bond.Namespace("tests")] [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class BasicTypes { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/basic_types_nsmapped_types.h b/compiler/tests/generated/basic_types_nsmapped_types.h index 3570c6b020..a7c7b320e5 100644 --- a/compiler/tests/generated/basic_types_nsmapped_types.h +++ b/compiler/tests/generated/basic_types_nsmapped_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/basic_types_types.cs b/compiler/tests/generated/basic_types_types.cs index 2db60d7a3a..38131a387b 100644 --- a/compiler/tests/generated/basic_types_types.cs +++ b/compiler/tests/generated/basic_types_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class BasicTypes { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/basic_types_types.h b/compiler/tests/generated/basic_types_types.h index 258fe6b84e..6fdd0e46a5 100644 --- a/compiler/tests/generated/basic_types_types.h +++ b/compiler/tests/generated/basic_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/bond_meta_types.cs b/compiler/tests/generated/bond_meta_types.cs index 075fdcc604..f9c954d9fd 100644 --- a/compiler/tests/generated/bond_meta_types.cs +++ b/compiler/tests/generated/bond_meta_types.cs @@ -18,7 +18,7 @@ namespace deprecated.bondmeta using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class HasMetaFields { [global::Bond.Id(0), global::Bond.RequiredOptional] diff --git a/compiler/tests/generated/bond_meta_types.h b/compiler/tests/generated/bond_meta_types.h index 966d5f09f5..4f1beb699f 100644 --- a/compiler/tests/generated/bond_meta_types.h +++ b/compiler/tests/generated/bond_meta_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/collection-interfaces/aliases_types.cs b/compiler/tests/generated/collection-interfaces/aliases_types.cs index a2405bb9e9..679a30a6f7 100644 --- a/compiler/tests/generated/collection-interfaces/aliases_types.cs +++ b/compiler/tests/generated/collection-interfaces/aliases_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0), global::Bond.Type(typeof(List>))] @@ -34,14 +34,14 @@ protected Foo(string fullName, string name) } } - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum EnumToWrap { anEnumValue, } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class WrappingAnEnum { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/collection-interfaces/attributes_types.cs b/compiler/tests/generated/collection-interfaces/attributes_types.cs index be81da05e4..4a4e9abc0d 100644 --- a/compiler/tests/generated/collection-interfaces/attributes_types.cs +++ b/compiler/tests/generated/collection-interfaces/attributes_types.cs @@ -19,7 +19,7 @@ namespace tests [global::Bond.Attribute("EnumAttribute1", "one")] [global::Bond.Attribute("EnumAttribute2", "two")] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum Enum { Value1, @@ -28,7 +28,7 @@ public enum Enum [global::Bond.Attribute("StructAttribute1", "one")] [global::Bond.Attribute("StructAttribute2", "two")] [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Attribute("FieldAttribute1", "one")] diff --git a/compiler/tests/generated/collection-interfaces/basic_types_nsmapped_types.cs b/compiler/tests/generated/collection-interfaces/basic_types_nsmapped_types.cs index 7dbb7a1611..10bd9320e3 100644 --- a/compiler/tests/generated/collection-interfaces/basic_types_nsmapped_types.cs +++ b/compiler/tests/generated/collection-interfaces/basic_types_nsmapped_types.cs @@ -19,7 +19,7 @@ namespace nsmapped [global::Bond.Namespace("tests")] [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class BasicTypes { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/collection-interfaces/basic_types_types.cs b/compiler/tests/generated/collection-interfaces/basic_types_types.cs index 2db60d7a3a..38131a387b 100644 --- a/compiler/tests/generated/collection-interfaces/basic_types_types.cs +++ b/compiler/tests/generated/collection-interfaces/basic_types_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class BasicTypes { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/collection-interfaces/bond_meta_types.cs b/compiler/tests/generated/collection-interfaces/bond_meta_types.cs index 075fdcc604..f9c954d9fd 100644 --- a/compiler/tests/generated/collection-interfaces/bond_meta_types.cs +++ b/compiler/tests/generated/collection-interfaces/bond_meta_types.cs @@ -18,7 +18,7 @@ namespace deprecated.bondmeta using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class HasMetaFields { [global::Bond.Id(0), global::Bond.RequiredOptional] diff --git a/compiler/tests/generated/collection-interfaces/complex_inheritance_types.cs b/compiler/tests/generated/collection-interfaces/complex_inheritance_types.cs index 058d29fa32..48243dca25 100644 --- a/compiler/tests/generated/collection-interfaces/complex_inheritance_types.cs +++ b/compiler/tests/generated/collection-interfaces/complex_inheritance_types.cs @@ -17,7 +17,7 @@ namespace Test { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum TestEnum { EnumVal1, @@ -26,7 +26,7 @@ public enum TestEnum } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Simple { [global::Bond.Id(0)] @@ -49,7 +49,7 @@ protected Simple(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0), global::Bond.Type(typeof(global::Bond.Tag.wstring))] @@ -66,7 +66,7 @@ protected Foo(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Bar : Foo { @@ -107,7 +107,7 @@ protected Bar(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Baz : Bar { @@ -133,7 +133,7 @@ protected Baz(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class DerivedEmpty : Foo { diff --git a/compiler/tests/generated/collection-interfaces/complex_types_types.cs b/compiler/tests/generated/collection-interfaces/complex_types_types.cs index 144973b7ea..58c2d24c71 100644 --- a/compiler/tests/generated/collection-interfaces/complex_types_types.cs +++ b/compiler/tests/generated/collection-interfaces/complex_types_types.cs @@ -18,14 +18,14 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class ComplexTypes { [global::Bond.Id(0), global::Bond.Type(typeof(LinkedList))] diff --git a/compiler/tests/generated/collection-interfaces/defaults_types.cs b/compiler/tests/generated/collection-interfaces/defaults_types.cs index 702cfc8df2..aa0ade7abb 100644 --- a/compiler/tests/generated/collection-interfaces/defaults_types.cs +++ b/compiler/tests/generated/collection-interfaces/defaults_types.cs @@ -17,7 +17,7 @@ namespace tests { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum EnumType1 { EnumValue1 = unchecked((int)5), @@ -36,7 +36,7 @@ public enum EnumType1 } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/collection-interfaces/field_modifiers_types.cs b/compiler/tests/generated/collection-interfaces/field_modifiers_types.cs index 230988fb6b..c3dce96526 100644 --- a/compiler/tests/generated/collection-interfaces/field_modifiers_types.cs +++ b/compiler/tests/generated/collection-interfaces/field_modifiers_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/collection-interfaces/generics_types.cs b/compiler/tests/generated/collection-interfaces/generics_types.cs index 6d3d74f3db..42e1a4602d 100644 --- a/compiler/tests/generated/collection-interfaces/generics_types.cs +++ b/compiler/tests/generated/collection-interfaces/generics_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo where T2 : struct { diff --git a/compiler/tests/generated/collection-interfaces/import_types.cs b/compiler/tests/generated/collection-interfaces/import_types.cs index 886caa4da1..2d511e0b1a 100644 --- a/compiler/tests/generated/collection-interfaces/import_types.cs +++ b/compiler/tests/generated/collection-interfaces/import_types.cs @@ -18,7 +18,7 @@ namespace import_test using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class HasEmpty { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/collection-interfaces/inheritance_types.cs b/compiler/tests/generated/collection-interfaces/inheritance_types.cs index 2ccaeef71e..8500aeaea4 100644 --- a/compiler/tests/generated/collection-interfaces/inheritance_types.cs +++ b/compiler/tests/generated/collection-interfaces/inheritance_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Base { [global::Bond.Id(0)] @@ -35,7 +35,7 @@ protected Base(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo : Base { diff --git a/compiler/tests/generated/collection-interfaces/nullable_alias_types.cs b/compiler/tests/generated/collection-interfaces/nullable_alias_types.cs index 79a906c97a..1a20ca21c2 100644 --- a/compiler/tests/generated/collection-interfaces/nullable_alias_types.cs +++ b/compiler/tests/generated/collection-interfaces/nullable_alias_types.cs @@ -18,7 +18,7 @@ namespace test using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class foo { [global::Bond.Id(1), global::Bond.Type(typeof(global::Bond.Tag.nullable))] diff --git a/compiler/tests/generated/complex_inheritance_types.cs b/compiler/tests/generated/complex_inheritance_types.cs index d876f0555d..2ec360eb77 100644 --- a/compiler/tests/generated/complex_inheritance_types.cs +++ b/compiler/tests/generated/complex_inheritance_types.cs @@ -17,7 +17,7 @@ namespace Test { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum TestEnum { EnumVal1, @@ -26,7 +26,7 @@ public enum TestEnum } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Simple { [global::Bond.Id(0)] @@ -49,7 +49,7 @@ protected Simple(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0), global::Bond.Type(typeof(global::Bond.Tag.wstring))] @@ -66,7 +66,7 @@ protected Foo(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Bar : Foo { @@ -107,7 +107,7 @@ protected Bar(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Baz : Bar { @@ -133,7 +133,7 @@ protected Baz(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class DerivedEmpty : Foo { diff --git a/compiler/tests/generated/complex_types_types.cs b/compiler/tests/generated/complex_types_types.cs index d270953e0e..b91ec8ec31 100644 --- a/compiler/tests/generated/complex_types_types.cs +++ b/compiler/tests/generated/complex_types_types.cs @@ -18,14 +18,14 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class ComplexTypes { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/complex_types_types.h b/compiler/tests/generated/complex_types_types.h index bf43e34b1f..cf69eb1e76 100644 --- a/compiler/tests/generated/complex_types_types.h +++ b/compiler/tests/generated/complex_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/constructor-parameters/collection-interfaces/complex_inheritance_types.cs b/compiler/tests/generated/constructor-parameters/collection-interfaces/complex_inheritance_types.cs index a4194e526d..739a6a04ba 100644 --- a/compiler/tests/generated/constructor-parameters/collection-interfaces/complex_inheritance_types.cs +++ b/compiler/tests/generated/constructor-parameters/collection-interfaces/complex_inheritance_types.cs @@ -17,7 +17,7 @@ namespace Test { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum TestEnum { EnumVal1, @@ -26,7 +26,7 @@ public enum TestEnum } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Simple { [global::Bond.Id(0)] @@ -55,7 +55,7 @@ public Simple() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0), global::Bond.Type(typeof(global::Bond.Tag.wstring))] @@ -74,7 +74,7 @@ public Foo() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Bar : Foo { @@ -135,7 +135,7 @@ public Bar() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Baz : Bar { @@ -187,7 +187,7 @@ public Baz() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class DerivedEmpty : Foo { diff --git a/compiler/tests/generated/constructor-parameters/collection-interfaces/empty_struct_types.cs b/compiler/tests/generated/constructor-parameters/collection-interfaces/empty_struct_types.cs index 6ca940ee56..eddf7b0689 100644 --- a/compiler/tests/generated/constructor-parameters/collection-interfaces/empty_struct_types.cs +++ b/compiler/tests/generated/constructor-parameters/collection-interfaces/empty_struct_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Empty { diff --git a/compiler/tests/generated/constructor-parameters/complex_inheritance_types.cs b/compiler/tests/generated/constructor-parameters/complex_inheritance_types.cs index 937f404cb0..26c4be2e2b 100644 --- a/compiler/tests/generated/constructor-parameters/complex_inheritance_types.cs +++ b/compiler/tests/generated/constructor-parameters/complex_inheritance_types.cs @@ -17,7 +17,7 @@ namespace Test { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum TestEnum { EnumVal1, @@ -26,7 +26,7 @@ public enum TestEnum } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Simple { [global::Bond.Id(0)] @@ -55,7 +55,7 @@ public Simple() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0), global::Bond.Type(typeof(global::Bond.Tag.wstring))] @@ -74,7 +74,7 @@ public Foo() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Bar : Foo { @@ -135,7 +135,7 @@ public Bar() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Baz : Bar { @@ -187,7 +187,7 @@ public Baz() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class DerivedEmpty : Foo { diff --git a/compiler/tests/generated/constructor-parameters/empty_struct_types.cs b/compiler/tests/generated/constructor-parameters/empty_struct_types.cs index 6ca940ee56..eddf7b0689 100644 --- a/compiler/tests/generated/constructor-parameters/empty_struct_types.cs +++ b/compiler/tests/generated/constructor-parameters/empty_struct_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Empty { diff --git a/compiler/tests/generated/constructor-parameters_fields/collection-interfaces/complex_inheritance_types.cs b/compiler/tests/generated/constructor-parameters_fields/collection-interfaces/complex_inheritance_types.cs index 0db3d1faa2..b829044323 100644 --- a/compiler/tests/generated/constructor-parameters_fields/collection-interfaces/complex_inheritance_types.cs +++ b/compiler/tests/generated/constructor-parameters_fields/collection-interfaces/complex_inheritance_types.cs @@ -17,7 +17,7 @@ namespace Test { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum TestEnum { EnumVal1, @@ -26,7 +26,7 @@ public enum TestEnum } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Simple { [global::Bond.Id(0)] @@ -55,7 +55,7 @@ public Simple() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0), global::Bond.Type(typeof(global::Bond.Tag.wstring))] @@ -74,7 +74,7 @@ public Foo() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Bar : Foo { @@ -130,7 +130,7 @@ public Bar() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Baz : Bar { @@ -180,7 +180,7 @@ public Baz() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class DerivedEmpty : Foo { diff --git a/compiler/tests/generated/constructor-parameters_fields/complex_inheritance_types.cs b/compiler/tests/generated/constructor-parameters_fields/complex_inheritance_types.cs index 1a9e2f6b55..f048e121a1 100644 --- a/compiler/tests/generated/constructor-parameters_fields/complex_inheritance_types.cs +++ b/compiler/tests/generated/constructor-parameters_fields/complex_inheritance_types.cs @@ -17,7 +17,7 @@ namespace Test { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum TestEnum { EnumVal1, @@ -26,7 +26,7 @@ public enum TestEnum } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Simple { [global::Bond.Id(0)] @@ -55,7 +55,7 @@ public Simple() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0), global::Bond.Type(typeof(global::Bond.Tag.wstring))] @@ -74,7 +74,7 @@ public Foo() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Bar : Foo { @@ -130,7 +130,7 @@ public Bar() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Baz : Bar { @@ -180,7 +180,7 @@ public Baz() } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class DerivedEmpty : Foo { diff --git a/compiler/tests/generated/custom_alias_with_allocator_types.h b/compiler/tests/generated/custom_alias_with_allocator_types.h index a8db3ea0a8..5519942533 100644 --- a/compiler/tests/generated/custom_alias_with_allocator_types.h +++ b/compiler/tests/generated/custom_alias_with_allocator_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/custom_alias_without_allocator_types.h b/compiler/tests/generated/custom_alias_without_allocator_types.h index dedd7710dc..52e1f0b277 100644 --- a/compiler/tests/generated/custom_alias_without_allocator_types.h +++ b/compiler/tests/generated/custom_alias_without_allocator_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/defaults_types.cs b/compiler/tests/generated/defaults_types.cs index 702cfc8df2..aa0ade7abb 100644 --- a/compiler/tests/generated/defaults_types.cs +++ b/compiler/tests/generated/defaults_types.cs @@ -17,7 +17,7 @@ namespace tests { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public enum EnumType1 { EnumValue1 = unchecked((int)5), @@ -36,7 +36,7 @@ public enum EnumType1 } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/defaults_types.h b/compiler/tests/generated/defaults_types.h index 12ade74da6..6133b535ed 100644 --- a/compiler/tests/generated/defaults_types.h +++ b/compiler/tests/generated/defaults_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/empty_types.h b/compiler/tests/generated/empty_types.h index 6c4089778d..d1532a5d67 100644 --- a/compiler/tests/generated/empty_types.h +++ b/compiler/tests/generated/empty_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/exports/service_types.h b/compiler/tests/generated/exports/service_types.h index 8df288dc91..39570dd0eb 100644 --- a/compiler/tests/generated/exports/service_types.h +++ b/compiler/tests/generated/exports/service_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/exports/with_enum_header_types.h b/compiler/tests/generated/exports/with_enum_header_types.h index ae54a4e9d3..53dfadd88d 100644 --- a/compiler/tests/generated/exports/with_enum_header_types.h +++ b/compiler/tests/generated/exports/with_enum_header_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/field_modifiers_types.cs b/compiler/tests/generated/field_modifiers_types.cs index 230988fb6b..c3dce96526 100644 --- a/compiler/tests/generated/field_modifiers_types.cs +++ b/compiler/tests/generated/field_modifiers_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/field_modifiers_types.h b/compiler/tests/generated/field_modifiers_types.h index 52e7c84d52..1e5a407103 100644 --- a/compiler/tests/generated/field_modifiers_types.h +++ b/compiler/tests/generated/field_modifiers_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/generic_service_grpc.cs b/compiler/tests/generated/generic_service_grpc.cs index e1ffb40ba8..fadb56f5ac 100644 --- a/compiler/tests/generated/generic_service_grpc.cs +++ b/compiler/tests/generated/generic_service_grpc.cs @@ -18,7 +18,7 @@ namespace tests { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public static class Foo where Payload : class { static readonly string ServiceName = "tests.Foo"; diff --git a/compiler/tests/generated/generic_service_types.cs b/compiler/tests/generated/generic_service_types.cs index 42368860b1..4b7cce9136 100644 --- a/compiler/tests/generated/generic_service_types.cs +++ b/compiler/tests/generated/generic_service_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class SomeBox { [global::Bond.Id(0), global::Bond.Type(typeof(global::Bond.Tag.classT))] diff --git a/compiler/tests/generated/generics_types.cs b/compiler/tests/generated/generics_types.cs index 6d3d74f3db..42e1a4602d 100644 --- a/compiler/tests/generated/generics_types.cs +++ b/compiler/tests/generated/generics_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo where T2 : struct { diff --git a/compiler/tests/generated/generics_types.h b/compiler/tests/generated/generics_types.h index 8ed065a98b..574335d1da 100644 --- a/compiler/tests/generated/generics_types.h +++ b/compiler/tests/generated/generics_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/import_types.cs b/compiler/tests/generated/import_types.cs index 886caa4da1..2d511e0b1a 100644 --- a/compiler/tests/generated/import_types.cs +++ b/compiler/tests/generated/import_types.cs @@ -18,7 +18,7 @@ namespace import_test using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class HasEmpty { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/import_types.h b/compiler/tests/generated/import_types.h index 37c0690e4e..da83cb5de1 100644 --- a/compiler/tests/generated/import_types.h +++ b/compiler/tests/generated/import_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/inheritance_types.cs b/compiler/tests/generated/inheritance_types.cs index 2ccaeef71e..8500aeaea4 100644 --- a/compiler/tests/generated/inheritance_types.cs +++ b/compiler/tests/generated/inheritance_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Base { [global::Bond.Id(0)] @@ -35,7 +35,7 @@ protected Base(string fullName, string name) } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Foo : Base { diff --git a/compiler/tests/generated/inheritance_types.h b/compiler/tests/generated/inheritance_types.h index 8c89e65793..6bce5f8db1 100644 --- a/compiler/tests/generated/inheritance_types.h +++ b/compiler/tests/generated/inheritance_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/maybe_blob_types.h b/compiler/tests/generated/maybe_blob_types.h index e8ea052a70..5dc1f82477 100644 --- a/compiler/tests/generated/maybe_blob_types.h +++ b/compiler/tests/generated/maybe_blob_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/metadata_edge_cases_types.h b/compiler/tests/generated/metadata_edge_cases_types.h index d1a8b6f509..557e9777d7 100644 --- a/compiler/tests/generated/metadata_edge_cases_types.h +++ b/compiler/tests/generated/metadata_edge_cases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/nullable_alias_types.cs b/compiler/tests/generated/nullable_alias_types.cs index 79a906c97a..1a20ca21c2 100644 --- a/compiler/tests/generated/nullable_alias_types.cs +++ b/compiler/tests/generated/nullable_alias_types.cs @@ -18,7 +18,7 @@ namespace test using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class foo { [global::Bond.Id(1), global::Bond.Type(typeof(global::Bond.Tag.nullable))] diff --git a/compiler/tests/generated/scoped_allocator/alias_key_types.h b/compiler/tests/generated/scoped_allocator/alias_key_types.h index 1387cb8f41..7ad6e6044d 100644 --- a/compiler/tests/generated/scoped_allocator/alias_key_types.h +++ b/compiler/tests/generated/scoped_allocator/alias_key_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/aliases_types.h b/compiler/tests/generated/scoped_allocator/aliases_types.h index b73a84629a..3a55518ce1 100644 --- a/compiler/tests/generated/scoped_allocator/aliases_types.h +++ b/compiler/tests/generated/scoped_allocator/aliases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/attributes_types.h b/compiler/tests/generated/scoped_allocator/attributes_types.h index d7c8c80bad..080b171c35 100644 --- a/compiler/tests/generated/scoped_allocator/attributes_types.h +++ b/compiler/tests/generated/scoped_allocator/attributes_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/basic_types_nsmapped_types.h b/compiler/tests/generated/scoped_allocator/basic_types_nsmapped_types.h index 9c30a0f847..9eb32798b1 100644 --- a/compiler/tests/generated/scoped_allocator/basic_types_nsmapped_types.h +++ b/compiler/tests/generated/scoped_allocator/basic_types_nsmapped_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/basic_types_types.h b/compiler/tests/generated/scoped_allocator/basic_types_types.h index a9ca70653a..3fdfe30f67 100644 --- a/compiler/tests/generated/scoped_allocator/basic_types_types.h +++ b/compiler/tests/generated/scoped_allocator/basic_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/bond_meta_types.h b/compiler/tests/generated/scoped_allocator/bond_meta_types.h index 9e98d3c3ac..c95e653948 100644 --- a/compiler/tests/generated/scoped_allocator/bond_meta_types.h +++ b/compiler/tests/generated/scoped_allocator/bond_meta_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/complex_types_types.h b/compiler/tests/generated/scoped_allocator/complex_types_types.h index 287316b84b..b2d1294fac 100644 --- a/compiler/tests/generated/scoped_allocator/complex_types_types.h +++ b/compiler/tests/generated/scoped_allocator/complex_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/defaults_types.h b/compiler/tests/generated/scoped_allocator/defaults_types.h index e54f502a92..07f19c2cfc 100644 --- a/compiler/tests/generated/scoped_allocator/defaults_types.h +++ b/compiler/tests/generated/scoped_allocator/defaults_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/empty_types.h b/compiler/tests/generated/scoped_allocator/empty_types.h index 6c4089778d..d1532a5d67 100644 --- a/compiler/tests/generated/scoped_allocator/empty_types.h +++ b/compiler/tests/generated/scoped_allocator/empty_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/field_modifiers_types.h b/compiler/tests/generated/scoped_allocator/field_modifiers_types.h index 39ee2c4338..99c2fadf50 100644 --- a/compiler/tests/generated/scoped_allocator/field_modifiers_types.h +++ b/compiler/tests/generated/scoped_allocator/field_modifiers_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/generics_types.h b/compiler/tests/generated/scoped_allocator/generics_types.h index 708fe459f4..396006f961 100644 --- a/compiler/tests/generated/scoped_allocator/generics_types.h +++ b/compiler/tests/generated/scoped_allocator/generics_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/import_types.h b/compiler/tests/generated/scoped_allocator/import_types.h index b7f045646b..ca70bec9d5 100644 --- a/compiler/tests/generated/scoped_allocator/import_types.h +++ b/compiler/tests/generated/scoped_allocator/import_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/inheritance_types.h b/compiler/tests/generated/scoped_allocator/inheritance_types.h index 3513289d26..fab94517f7 100644 --- a/compiler/tests/generated/scoped_allocator/inheritance_types.h +++ b/compiler/tests/generated/scoped_allocator/inheritance_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/maybe_blob_types.h b/compiler/tests/generated/scoped_allocator/maybe_blob_types.h index 88337f1184..18cca25795 100644 --- a/compiler/tests/generated/scoped_allocator/maybe_blob_types.h +++ b/compiler/tests/generated/scoped_allocator/maybe_blob_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/metadata_edge_cases_types.h b/compiler/tests/generated/scoped_allocator/metadata_edge_cases_types.h index c0f9dd74af..dc6b00c2b8 100644 --- a/compiler/tests/generated/scoped_allocator/metadata_edge_cases_types.h +++ b/compiler/tests/generated/scoped_allocator/metadata_edge_cases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/scoped_allocator/with_enum_header_types.h b/compiler/tests/generated/scoped_allocator/with_enum_header_types.h index 7663893098..5356b6040d 100644 --- a/compiler/tests/generated/scoped_allocator/with_enum_header_types.h +++ b/compiler/tests/generated/scoped_allocator/with_enum_header_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/service_attributes_grpc.cs b/compiler/tests/generated/service_attributes_grpc.cs index ff4935335e..5b6894e9ee 100644 --- a/compiler/tests/generated/service_attributes_grpc.cs +++ b/compiler/tests/generated/service_attributes_grpc.cs @@ -19,7 +19,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Attribute("FooAttribute", "Bar")] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public static class Foo { static readonly string ServiceName = "tests.Foo"; diff --git a/compiler/tests/generated/service_attributes_types.cs b/compiler/tests/generated/service_attributes_types.cs index 0244567318..c4da8e90aa 100644 --- a/compiler/tests/generated/service_attributes_types.cs +++ b/compiler/tests/generated/service_attributes_types.cs @@ -18,14 +18,14 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Result { } [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class Param { diff --git a/compiler/tests/generated/service_grpc.cs b/compiler/tests/generated/service_grpc.cs index 0385227438..fe8ea865a9 100644 --- a/compiler/tests/generated/service_grpc.cs +++ b/compiler/tests/generated/service_grpc.cs @@ -18,7 +18,7 @@ namespace tests { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public static class Foo { static readonly string ServiceName = "tests.Foo"; diff --git a/compiler/tests/generated/service_types.cs b/compiler/tests/generated/service_types.cs index 2cb99e9d5b..b8008e5974 100644 --- a/compiler/tests/generated/service_types.cs +++ b/compiler/tests/generated/service_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class dummy { [global::Bond.Id(0)] diff --git a/compiler/tests/generated/streaming_grpc.cs b/compiler/tests/generated/streaming_grpc.cs index f423d4f585..89079533de 100644 --- a/compiler/tests/generated/streaming_grpc.cs +++ b/compiler/tests/generated/streaming_grpc.cs @@ -18,7 +18,7 @@ namespace tests { using System.Collections.Generic; - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public static class Foo { static readonly string ServiceName = "tests.Foo"; @@ -198,7 +198,7 @@ protected override FooClient NewInstance(global::Grpc.Core.ClientBase.ClientBase } - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public static class Bar where T : class { static readonly string ServiceName = "tests.Bar"; diff --git a/compiler/tests/generated/streaming_types.cs b/compiler/tests/generated/streaming_types.cs index 4b2c476db0..b576554feb 100644 --- a/compiler/tests/generated/streaming_types.cs +++ b/compiler/tests/generated/streaming_types.cs @@ -18,7 +18,7 @@ namespace tests using System.Collections.Generic; [global::Bond.Schema] - [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.0.1")] + [System.CodeDom.Compiler.GeneratedCode("gbc", "0.12.1.0")] public partial class stream { diff --git a/compiler/tests/generated/type_aliases/alias_key_types.h b/compiler/tests/generated/type_aliases/alias_key_types.h index 86031a3049..159d19c7bc 100644 --- a/compiler/tests/generated/type_aliases/alias_key_types.h +++ b/compiler/tests/generated/type_aliases/alias_key_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/alias_with_allocator_types.h b/compiler/tests/generated/type_aliases/alias_with_allocator_types.h index 3e76e29214..a17eb4c1e3 100644 --- a/compiler/tests/generated/type_aliases/alias_with_allocator_types.h +++ b/compiler/tests/generated/type_aliases/alias_with_allocator_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/aliases_types.h b/compiler/tests/generated/type_aliases/aliases_types.h index 1357f31e45..b265efca33 100644 --- a/compiler/tests/generated/type_aliases/aliases_types.h +++ b/compiler/tests/generated/type_aliases/aliases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/attributes_types.h b/compiler/tests/generated/type_aliases/attributes_types.h index bf38205f46..9d085b513d 100644 --- a/compiler/tests/generated/type_aliases/attributes_types.h +++ b/compiler/tests/generated/type_aliases/attributes_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/basic_types_nsmapped_types.h b/compiler/tests/generated/type_aliases/basic_types_nsmapped_types.h index d91c68d394..6c65462a53 100644 --- a/compiler/tests/generated/type_aliases/basic_types_nsmapped_types.h +++ b/compiler/tests/generated/type_aliases/basic_types_nsmapped_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/basic_types_types.h b/compiler/tests/generated/type_aliases/basic_types_types.h index 7d3fbd1cc1..e238697588 100644 --- a/compiler/tests/generated/type_aliases/basic_types_types.h +++ b/compiler/tests/generated/type_aliases/basic_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/bond_meta_types.h b/compiler/tests/generated/type_aliases/bond_meta_types.h index ec30c4d668..eefbf3cd86 100644 --- a/compiler/tests/generated/type_aliases/bond_meta_types.h +++ b/compiler/tests/generated/type_aliases/bond_meta_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/complex_types_types.h b/compiler/tests/generated/type_aliases/complex_types_types.h index 70fe2f793c..2311aeb3b4 100644 --- a/compiler/tests/generated/type_aliases/complex_types_types.h +++ b/compiler/tests/generated/type_aliases/complex_types_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/custom_alias_with_allocator_types.h b/compiler/tests/generated/type_aliases/custom_alias_with_allocator_types.h index 69de2a34d2..9f81ad4b3f 100644 --- a/compiler/tests/generated/type_aliases/custom_alias_with_allocator_types.h +++ b/compiler/tests/generated/type_aliases/custom_alias_with_allocator_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/custom_alias_without_allocator_types.h b/compiler/tests/generated/type_aliases/custom_alias_without_allocator_types.h index 16ede2ea55..eba28b0ec2 100644 --- a/compiler/tests/generated/type_aliases/custom_alias_without_allocator_types.h +++ b/compiler/tests/generated/type_aliases/custom_alias_without_allocator_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/defaults_types.h b/compiler/tests/generated/type_aliases/defaults_types.h index fe74615c5f..128cc16dca 100644 --- a/compiler/tests/generated/type_aliases/defaults_types.h +++ b/compiler/tests/generated/type_aliases/defaults_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/empty_types.h b/compiler/tests/generated/type_aliases/empty_types.h index 6c4089778d..d1532a5d67 100644 --- a/compiler/tests/generated/type_aliases/empty_types.h +++ b/compiler/tests/generated/type_aliases/empty_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/field_modifiers_types.h b/compiler/tests/generated/type_aliases/field_modifiers_types.h index 39ee2c4338..99c2fadf50 100644 --- a/compiler/tests/generated/type_aliases/field_modifiers_types.h +++ b/compiler/tests/generated/type_aliases/field_modifiers_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/generics_types.h b/compiler/tests/generated/type_aliases/generics_types.h index 708fe459f4..396006f961 100644 --- a/compiler/tests/generated/type_aliases/generics_types.h +++ b/compiler/tests/generated/type_aliases/generics_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/import_types.h b/compiler/tests/generated/type_aliases/import_types.h index b7f045646b..ca70bec9d5 100644 --- a/compiler/tests/generated/type_aliases/import_types.h +++ b/compiler/tests/generated/type_aliases/import_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/inheritance_types.h b/compiler/tests/generated/type_aliases/inheritance_types.h index 3513289d26..fab94517f7 100644 --- a/compiler/tests/generated/type_aliases/inheritance_types.h +++ b/compiler/tests/generated/type_aliases/inheritance_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/maybe_blob_types.h b/compiler/tests/generated/type_aliases/maybe_blob_types.h index 88337f1184..18cca25795 100644 --- a/compiler/tests/generated/type_aliases/maybe_blob_types.h +++ b/compiler/tests/generated/type_aliases/maybe_blob_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/metadata_edge_cases_types.h b/compiler/tests/generated/type_aliases/metadata_edge_cases_types.h index c0f9dd74af..dc6b00c2b8 100644 --- a/compiler/tests/generated/type_aliases/metadata_edge_cases_types.h +++ b/compiler/tests/generated/type_aliases/metadata_edge_cases_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/type_aliases/with_enum_header_types.h b/compiler/tests/generated/type_aliases/with_enum_header_types.h index 127526f0ed..200c21d338 100644 --- a/compiler/tests/generated/type_aliases/with_enum_header_types.h +++ b/compiler/tests/generated/type_aliases/with_enum_header_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/compiler/tests/generated/with_enum_header_types.h b/compiler/tests/generated/with_enum_header_types.h index f0f441e9da..2a4dbe949b 100644 --- a/compiler/tests/generated/with_enum_header_types.h +++ b/compiler/tests/generated/with_enum_header_types.h @@ -3,11 +3,11 @@ #include -#if BOND_VERSION < 0x0800 +#if BOND_VERSION < 0x0900 #error This file was generated by a newer version of the Bond compiler and is incompatible with your version of the Bond library. #endif -#if BOND_MIN_CODEGEN_VERSION > 0x0c01 +#if BOND_MIN_CODEGEN_VERSION > 0x0c10 #error This file was generated by an older version of the Bond compiler and is incompatible with your version of the Bond library. #endif diff --git a/cpp/inc/bond/core/bond_version.h b/cpp/inc/bond/core/bond_version.h index 9aced59466..3fa122cde0 100644 --- a/cpp/inc/bond/core/bond_version.h +++ b/cpp/inc/bond/core/bond_version.h @@ -8,8 +8,8 @@ #include #include -#define BOND_VERSION 0x0800 -#define BOND_MIN_CODEGEN_VERSION 0x0b00 +#define BOND_VERSION 0x0900 +#define BOND_MIN_CODEGEN_VERSION 0x0c10 namespace bond {