Merge pull request #1852 from tree-sitter/default-abi-version-14

Generate parsers with ABI version 14 by default
This commit is contained in:
Max Brunsfeld 2022-09-02 13:05:44 -07:00 committed by GitHub
commit 17fb261633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();