Skip to content

Commit

Permalink
Updated version and changelog, fixing single variables
Browse files Browse the repository at this point in the history
  • Loading branch information
bhl09 committed Jan 20, 2020
1 parent 93f45e4 commit e8fe0a0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions device_calendar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 3.0.0 21st January 2020

* **BREAKING CHANGE** Properties for the attendee model in `attendee.dart` file have been changed:
* Boolean property `isRequired` has been replaced to `AttendeeRole` enum
* New arugment added for `AttendeeRole` property
* **BREAKING CHANGE** Package updates:
* [Android] Updated Gradle plugin to 3.5.2 and Gradle wrapper to 5.4.1
* [iOS] Updated Swift to 5
* `name` and `isOrganiser` (read-only) properties have been added
* Attendee UI update for the example app
* Ability to add, modify or remove an attendee

## 2.0.0 17th January 2020

* **BREAKING CHANGE** The recurrence models in `recurrence_rule.dart` file have been chaged
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ class _EventAttendeePageState extends State<EventAttendeePage> {
onChanged: (value) { setState(() { _role = value; }); },
value: _role,
items: AttendeeRole.values
.map((f) => DropdownMenuItem(
value: f,
child: Text(f.enumToString),
.map((role) => DropdownMenuItem(
value: role,
child: Text(role.enumToString),
))
.toList(),
),
Expand Down
2 changes: 1 addition & 1 deletion device_calendar/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: device_calendar
description: A cross platform plugin for modifying calendars on the user's device.
version: 2.0.0
version: 3.0.0
homepage: https://github.com/builttoroam/flutter_plugins/tree/master/device_calendar

dependencies:
Expand Down

0 comments on commit e8fe0a0

Please sign in to comment.