diff --git a/packages/mason/CHANGELOG.md b/packages/mason/CHANGELOG.md index 6e2e0cd3..b0e7e401 100644 --- a/packages/mason/CHANGELOG.md +++ b/packages/mason/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.0-dev.54 + +- fix: compile hooks to AOT when using AOT runtime ([#1331](https://github.com/felangel/mason/issues/1331)) + # 0.1.0-dev.53 - chore(deps): upgrade `pkg:mason_logger` to `^0.2.15` ([#1302](https://github.com/felangel/mason/issues/1302)) diff --git a/packages/mason/lib/src/version.dart b/packages/mason/lib/src/version.dart index bb2eef4b..82bbadb5 100644 --- a/packages/mason/lib/src/version.dart +++ b/packages/mason/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.1.0-dev.53'; +const packageVersion = '0.1.0-dev.54'; diff --git a/packages/mason/pubspec.yaml b/packages/mason/pubspec.yaml index b996057a..ede17789 100644 --- a/packages/mason/pubspec.yaml +++ b/packages/mason/pubspec.yaml @@ -1,7 +1,7 @@ name: mason description: > A Dart template generator which helps teams generate files quickly and consistently. -version: 0.1.0-dev.53 +version: 0.1.0-dev.54 homepage: https://github.com/felangel/mason repository: https://github.com/felangel/mason issue_tracker: https://github.com/felangel/mason/issues diff --git a/packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/brick.yaml b/packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/brick.yaml index e56038ff..1b10852b 100644 --- a/packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/brick.yaml +++ b/packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/brick.yaml @@ -13,7 +13,7 @@ version: 0.1.0+1 # The following defines the environment for the current brick. # It includes the version of mason that the brick requires. environment: - mason: ">=0.1.0-dev.53 <0.1.0" + mason: ">=0.1.0-dev.54 <0.1.0" # Variables specify dynamic values that your brick depends on. # Zero or more variables can be specified for a given brick. diff --git a/packages/mason_cli/test/fixtures/new/hooks/brick.yaml b/packages/mason_cli/test/fixtures/new/hooks/brick.yaml index df03c6ff..91952a33 100644 --- a/packages/mason_cli/test/fixtures/new/hooks/brick.yaml +++ b/packages/mason_cli/test/fixtures/new/hooks/brick.yaml @@ -13,7 +13,7 @@ version: 0.1.0+1 # The following defines the environment for the current brick. # It includes the version of mason that the brick requires. environment: - mason: ">=0.1.0-dev.53 <0.1.0" + mason: ">=0.1.0-dev.54 <0.1.0" # Variables specify dynamic values that your brick depends on. # Zero or more variables can be specified for a given brick. diff --git a/packages/mason_cli/test/fixtures/new/hooks/hooks/pubspec.yaml b/packages/mason_cli/test/fixtures/new/hooks/hooks/pubspec.yaml index c9cad385..01421b80 100644 --- a/packages/mason_cli/test/fixtures/new/hooks/hooks/pubspec.yaml +++ b/packages/mason_cli/test/fixtures/new/hooks/hooks/pubspec.yaml @@ -4,4 +4,4 @@ environment: sdk: ">=2.12.0 <3.0.0" dependencies: - mason: ">=0.1.0-dev.53 <0.1.0" + mason: ">=0.1.0-dev.54 <0.1.0" diff --git a/packages/mason_cli/test/fixtures/new/simple/hello_world/brick.yaml b/packages/mason_cli/test/fixtures/new/simple/hello_world/brick.yaml index e56038ff..1b10852b 100644 --- a/packages/mason_cli/test/fixtures/new/simple/hello_world/brick.yaml +++ b/packages/mason_cli/test/fixtures/new/simple/hello_world/brick.yaml @@ -13,7 +13,7 @@ version: 0.1.0+1 # The following defines the environment for the current brick. # It includes the version of mason that the brick requires. environment: - mason: ">=0.1.0-dev.53 <0.1.0" + mason: ">=0.1.0-dev.54 <0.1.0" # Variables specify dynamic values that your brick depends on. # Zero or more variables can be specified for a given brick.