Skip to content

Commit

Permalink
ci: Update sections in release please
Browse files Browse the repository at this point in the history
docs: update version in readme
  • Loading branch information
thelukewalton committed May 21, 2024
1 parent c90f123 commit f7ba611
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 16 deletions.
60 changes: 59 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,61 @@
{
".": "1.2.4"
".": "1.2.4",
"extra-files": [
"./README.md"
],
"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: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
## [1.0.1] - 2024-01-12

- [`21a2bb9`](https://github.com/ZebraDevs/zds_flutter/commit/21a2bb9905cbedf381cb04cf37b31fc4c12275d8) - fix dependency violation. \_(commit by @thelukewalton)

## [1.2.4](https://github.com/ZebraDevs/zds_flutter/compare/v1.2.3...v1.2.4) (2024-05-20)


Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@ Make sure your app meets the following requirements before using ZDS Flutter

Add the following as a dependency in your pubspec.yaml file.

```yml
zds-flutter: ^1.1.0
<!--x-release-please-start-version-->

```yaml
zds-flutter: ^1.2.4
```
<!-- x-release-please-end -->
## Getting started
### Template
Expand Down Expand Up @@ -75,8 +79,6 @@ This software is licensed with the MIT license (see [LICENSE](./LICENSE)) and us

[ ] Add [Widgetbook](https://pub.dev/packages/widgetbook).

[ ] Update version in readme for each release.

[ ] Fix untranslated strings - see `untranslated.json`.

[ ] Set up themes to inherit from parent classes - think of toolbar within bottom of appbar.
Expand All @@ -85,6 +87,4 @@ This software is licensed with the MIT license (see [LICENSE](./LICENSE)) and us

[ ] Analyze dependencies for weaknesses, possibly phase out some.

[ ] Improve Github actions to be safer and to add a change log.

[ ] Remove code from this repo that is not strictly needed for flutter - github actions could be in another repo?
3 changes: 1 addition & 2 deletions lib/src/components/atoms/interactive_viewer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ class ZdsInteractiveViewer extends StatefulWidget {
final Clip clipBehavior;

@override
// ignore: library_private_types_in_public_api
_ZdsInteractiveViewerState createState() => _ZdsInteractiveViewerState();
State<ZdsInteractiveViewer> createState() => _ZdsInteractiveViewerState();

@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ignore_for_file: strict_raw_type,
// ignore_for_file: strict_raw_type

import 'dart:async';

Expand Down
2 changes: 0 additions & 2 deletions lib/src/utils/theme/theme_data.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// ignore_for_file: deprecated_member_use_from_same_package

import 'dart:convert';

import 'package:flutter/material.dart';
Expand Down

0 comments on commit f7ba611

Please sign in to comment.