Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(mason): v0.1.0-dev.53 #1303

Merged
merged 3 commits into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/mason/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.1.0-dev.53

- chore(deps): upgrade `pkg:mason_logger` to `^0.2.15` ([#1302](https://github.com/felangel/mason/issues/1302))
- bumps the Dart SDK minimum version up to `3.3.0`

# 0.1.0-dev.52

- fix: update hook `run` to support long Dart formats ([#1164](https://github.com/felangel/mason/issues/1164))
Expand Down
2 changes: 1 addition & 1 deletion packages/mason/LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The MIT License (MIT)
Copyright (c) 2022 Felix Angelov
Copyright (c) 2024 Felix Angelov

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion packages/mason/lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/mason/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: mason
description: >
A Dart template generator which helps teams generate files quickly and consistently.
version: 0.1.0-dev.52
version: 0.1.0-dev.53
homepage: https://github.com/felangel/mason
repository: https://github.com/felangel/mason
issue_tracker: https://github.com/felangel/mason/issues
Expand Down
2 changes: 1 addition & 1 deletion packages/mason/test/src/bundler_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ void main() {
expect(bundle.changelog, isNull);
expect(bundle.license, isNull);
expect(bundle.files.length, equals(1));
expect(bundle.hooks.length, equals(4));
final expectedFiles = [
'post_gen.dart',
'pre_gen.dart',
Expand All @@ -127,6 +126,7 @@ void main() {
final hookFile = bundle.hooks[i];
expect(hookFile.path, equals(expectedFiles[i]));
}
expect(bundle.hooks.length, equals(4));
});

test('returns a MasonBundle when brick exists (plugin)', () {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.52 <0.1.0"
mason: ">=0.1.0-dev.53 <0.1.0"

# Variables specify dynamic values that your brick depends on.
# Zero or more variables can be specified for a given brick.
Expand Down
2 changes: 1 addition & 1 deletion packages/mason_cli/test/fixtures/new/hooks/brick.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.52 <0.1.0"
mason: ">=0.1.0-dev.53 <0.1.0"

# Variables specify dynamic values that your brick depends on.
# Zero or more variables can be specified for a given brick.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ environment:
sdk: ">=2.12.0 <3.0.0"

dependencies:
mason: ">=0.1.0-dev.52 <0.1.0"
mason: ">=0.1.0-dev.53 <0.1.0"
Original file line number Diff line number Diff line change
Expand Up @@ -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.52 <0.1.0"
mason: ">=0.1.0-dev.53 <0.1.0"

# Variables specify dynamic values that your brick depends on.
# Zero or more variables can be specified for a given brick.
Expand Down