From e2fe380a08408ff42eada21f8723f653e6da6606 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 2 Sep 2022 12:31:29 -0700 Subject: [PATCH] Generate parsers with ABI version 14 by default --- cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index f92ec2d7..ce6743bf 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -12,7 +12,7 @@ use tree_sitter_loader as loader; const BUILD_VERSION: &'static str = env!("CARGO_PKG_VERSION"); const BUILD_SHA: Option<&'static str> = option_env!("BUILD_SHA"); -const DEFAULT_GENERATE_ABI_VERSION: usize = 13; +const DEFAULT_GENERATE_ABI_VERSION: usize = 14; fn main() { let result = run();