Skip to content

Commit

Permalink
fix: Fix release version in flutter
Browse files Browse the repository at this point in the history
ci: Update release-please config to match other repos
  • Loading branch information
thelukewalton committed Aug 20, 2024
1 parent 969d1d6 commit 52ad1ec
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 5 deletions.
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
}
]
}
4 changes: 3 additions & 1 deletion outputs/flutter/icons.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import 'package:flutter/material.dart';
// 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
4 changes: 3 additions & 1 deletion scripts/templates/icons.dart.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import 'package:flutter/material.dart';
// 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

0 comments on commit 52ad1ec

Please sign in to comment.