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

fix: Fix release version in flutter #24

Merged
merged 1 commit into from
Aug 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 60 additions & 3 deletions .release-please/release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,63 @@
".": {
"release-type": "node"
}

}
}
},
"extra-files": [
"outputs/flutter/icons.g.dart"
],
"changelog-sections": [
{
"type": "feat",
"section": "✨ New Features"
},
{
"type": "fix",
"section": "🪲 Bug Fixes"
},
{
"type": "revert",
"section": "👀 Reverts"
},
{
"type": "docs",
"section": "📈 Documentation"
},
{
"type": "deps",
"section": "⛓️ Dependencies"
},
{
"type": "test",
"section": "🧪 Tests"
},
{
"type": "chore",
"section": "🧹 Miscellaneous Chores"
},
{
"type": "perf",
"section": "Performance Improvements",
"hidden": true
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": true
},
{
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
}
]
}
6 changes: 4 additions & 2 deletions outputs/flutter/icons.g.dart
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
// ignore_for_file: public_member_api_docs, constant_identifier_names
// ignore_for_file: constant_identifier_names
import 'package:flutter/material.dart';

// This file is automatically generated by the zeta-icons repository
// DO NOT MODIFY

/// Current version of Zeta Icons
const zetaIconsVersion = 'VERSION_NUM';
// x-release-please-start-version
const zetaIconsVersion = '0.5.5';
// x-release-please-end

/// Zeta Icons. Full list of icons can be found at [Zeta Icons](https://zeta-icons.web.app/).
/// {@category Assets}
Expand Down
6 changes: 4 additions & 2 deletions scripts/templates/icons.dart.template
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
// ignore_for_file: public_member_api_docs, constant_identifier_names
// ignore_for_file: constant_identifier_names
import 'package:flutter/material.dart';

// This file is automatically generated by the zeta-icons repository
// DO NOT MODIFY

/// Current version of Zeta Icons
const zetaIconsVersion = 'VERSION_NUM';
// x-release-please-start-version
const zetaIconsVersion = '0.5.5';
// x-release-please-end

/// Zeta Icons. Full list of icons can be found at [Zeta Icons](https://zeta-icons.web.app/).
/// {@category Assets}
Expand Down