Skip to content

Commit

Permalink
Make FIR parser the default (#2205)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton authored Jul 29, 2024
1 parent c71e5b9 commit f647dc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[Unreleased]: https://github.com/cashapp/redwood/compare/0.13.0...HEAD

New:
- Nothing yet!
- Source-based schema parser is now the default. Can be disabled in your schema module with `redwood { useFir = false }`.

Changed:
- Nothing yet!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class RedwoodSchemaPlugin : Plugin<Project> {
RedwoodSchemaExtension::class.java,
).apply {
apiTracking.convention(true)
useFir.convention(false)
useFir.convention(true)
}

var applied = false
Expand Down

0 comments on commit f647dc3

Please sign in to comment.