Skip to content

Commit

Permalink
Merge pull request #1852 from tree-sitter/default-abi-version-14
Browse files Browse the repository at this point in the history
Generate parsers with ABI version 14 by default
  • Loading branch information
maxbrunsfeld authored Sep 2, 2022
2 parents 366210a + e2fe380 commit 17fb261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 17fb261

Please sign in to comment.