Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Frezyx committed Mar 28, 2022
1 parent 00d07aa commit a6d6cec
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## 4.8.0
- **FEAT**: Added enableIndexes abd disableIndexes methods for controller

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

## 4.7.0
- **FEAT**: added maxSelected field for setting max selected
- **FEAT**: Added maxSelected field for setting max selected
buttons in checkbox mode

Thanks for [gnassro](https://github.com/gnassro)
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.7.0 #latest version
group_button: ^4.8.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.7.0',
'GroupButton 4.8.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.7.0',
'GroupButton 4.8.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.7.0',
'GroupButton 4.8.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.7.0',
'GroupButton 4.8.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.7.0
version: 4.8.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.7.0
version: 4.8.0
homepage: https://github.com/Frezyx/group_button

environment:
Expand Down

0 comments on commit a6d6cec

Please sign in to comment.