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( all): release 1.0.0 #294

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .fvmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"flutter": "3.27.0"
"flutter": "3.29.0"
}
2 changes: 1 addition & 1 deletion .github/workflows/on-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
cache: true
channel: stable
flutter-version: 3.27.x
flutter-version: 3.29.x
- name: Setup flutter
run: flutter pub get
- name: Build example app
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
with:
cache: true
channel: stable
flutter-version: 3.27.x
flutter-version: 3.29.x
- name: Install dependencies
run: flutter pub get
- name: Install melos
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
cache: true
channel: stable
flutter-version: 3.27.x
flutter-version: 3.29.x
- run: dart pub global activate melos
- run: dart run build_runner build --delete-conflicting-outputs
- run: |
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
with:
cache: true
channel: stable
flutter-version: 3.27.x
flutter-version: 3.29.x
- name: Setup flutter
run: flutter pub get
- name: Build example app
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"packages/zeta_flutter_theme": "0.20.2",
"packages/zeta_flutter_utils": "0.20.2",
"packages/zeta_icons": "0.20.2",
".": "0.20.2"
".": "1.0.0"
}
459 changes: 459 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/lib/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class _HomeState extends State<Home> {
final _theme = theme..sort((a, b) => a.name.compareTo(b.name));
return ExampleScaffold(
// x-release-please-start-version
name: 'zeta_flutter v0.20.2',
name: 'zeta_flutter v1.0.0',
// x-release-please-end
child: SingleChildScrollView(
child: Column(
Expand Down
1 change: 0 additions & 1 deletion packages/zeta_flutter_theme/lib/src/zeta_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,6 @@ ThemeData generateZetaTheme({
visualDensity: existingTheme.visualDensity,
canvasColor: existingTheme.canvasColor,
cardColor: existingTheme.cardColor,
dialogBackgroundColor: existingTheme.dialogBackgroundColor,
disabledColor: existingTheme.disabledColor,
dividerColor: existingTheme.dividerColor,
focusColor: existingTheme.focusColor,
Expand Down
2 changes: 1 addition & 1 deletion widgetbook/lib/introduction.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class _IntroductionWidgetbookState extends State<IntroductionWidgetbook> {
Expanded(
child: Text(
// x-release-please-start-version
'zeta_flutter v0.20.2',
'zeta_flutter v1.0.0',
// x-release-please-end
style: ZetaTextStyles.displayLarge
.copyWith(fontSize: largeScreen ? null : 24, color: colors.mainDefault),
Expand Down
Loading