Skip to content

Commit

Permalink
Ensure compatibility_minimum is parsed correctly
Browse files Browse the repository at this point in the history
Without quotes the values is parsed as a float, breaking in various
cases.
  • Loading branch information
AThousandShips committed Aug 31, 2023
1 parent 9a6c741 commit 89cebb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ See [example.gdextension](test/project/example.gdextension) used in the test pro
[configuration]

entry_symbol = "example_library_init"
compatibility_minimum = 4.1
compatibility_minimum = "4.1"

[libraries]

Expand Down
2 changes: 1 addition & 1 deletion test/project/example.gdextension
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[configuration]

entry_symbol = "example_library_init"
compatibility_minimum = 4.1
compatibility_minimum = "4.1"

[libraries]

Expand Down

0 comments on commit 89cebb0

Please sign in to comment.