Skip to content

Commit

Permalink
Update version to 4.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Frezyx committed Mar 23, 2022
1 parent ae48a1c commit a99e3e1
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 4.7.0
- **FEAT**: added maxSelected field for setting max selected
buttons in checkbox mode

Thanks for [gnassro](https://github.com/gnassro)

## 4.6.0
- **FEAT**: Added buttonBuilder field for
implementing your own custom buttons
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Follow these steps to use this package

```yaml
dependencies:
group_button: ^4.6.0 #latest version
group_button: ^4.7.0 #latest version
```

### Add import package
Expand Down
2 changes: 1 addition & 1 deletion example/lib/examples/button_builder_example/example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class _ButtonBuilderExampleState extends State<ButtonBuilderExample> {
shadowColor: Colors.grey[100]?.withOpacity(0.1),
backgroundColor: Colors.white,
title: Text(
'GroupButton 4.6.0',
'GroupButton 4.7.0',
style: Theme.of(context).textTheme.headline6,
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class CustomizableExample extends StatelessWidget {
shadowColor: Colors.grey[100]?.withOpacity(0.1),
backgroundColor: Colors.white,
title: Text(
'GroupButton 4.6.0',
'GroupButton 4.7.0',
style: Theme.of(context).textTheme.headline6,
),
),
Expand Down
2 changes: 1 addition & 1 deletion example/lib/examples/extended_example/example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class _ExampleState extends State<_Example> {
shadowColor: Colors.grey[100]?.withOpacity(0.1),
backgroundColor: Colors.white,
title: Text(
'GroupButton 4.6.0',
'GroupButton 4.7.0',
style: Theme.of(context).textTheme.headline6,
),
),
Expand Down
2 changes: 1 addition & 1 deletion example/lib/examples/styles_example/example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class StylesExample extends StatelessWidget {
shadowColor: Colors.grey[100]?.withOpacity(0.1),
backgroundColor: Colors.white,
title: Text(
'GroupButton 4.6.0',
'GroupButton 4.7.0',
style: Theme.of(context).textTheme.headline6,
),
),
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 4.6.0
version: 4.7.0

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: group_button
description: Flutter custom widget to make a group buttons. Included Radio and CheckBox buttons.
version: 4.6.0
version: 4.7.0
homepage: https://github.com/Frezyx/group_button

environment:
Expand Down

0 comments on commit a99e3e1

Please sign in to comment.