Skip to content

Commit

Permalink
Increment plugin version to 2.0.0-dev.5
Browse files Browse the repository at this point in the history
  • Loading branch information
gdelataillade committed Sep 19, 2023
1 parent f01dd7a commit 484c5b2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## 2.0.0-dev.4
## 2.0.0-dev.5
*Still in development...*
* [iOS] Move background fetch to native.
* [Android] Fix build errors.

## 2.0.0-dev.4
* [iOS] Improve background fetch & audio interruptions

## 2.0.0-dev.3
Expand Down
2 changes: 1 addition & 1 deletion example/lib/screens/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class _ExampleAlarmHomeScreenState extends State<ExampleAlarmHomeScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('alarm 2.0.0-dev.4')),
appBar: AppBar(title: const Text('alarm 2.0.0-dev.5')),
body: SafeArea(
child: alarms.isNotEmpty
? ListView.separated(
Expand Down
2 changes: 1 addition & 1 deletion example/lib/screens/shortcut_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class _ExampleAlarmHomeShortcutButtonState
setState(() => showMenu = false);

final alarmSettings = AlarmSettings(
id: delayInHours,
id: DateTime.now().millisecondsSinceEpoch % 10000,
dateTime: dateTime,
assetAudioPath: 'assets/marimba.mp3',
volumeMax: true,
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: alarm
description: A simple Flutter alarm manager plugin for both iOS and Android.
version: 2.0.0-dev.4
version: 2.0.0-dev.5
homepage: https://github.com/gdelataillade/alarm

environment:
Expand Down

0 comments on commit 484c5b2

Please sign in to comment.