Skip to content

Commit e21c69c

Browse files
authored
chore: release v0.0.9-beta (#171)
1 parent 8388594 commit e21c69c

File tree

11 files changed

+25
-8
lines changed

11 files changed

+25
-8
lines changed

packages/clerk_auth/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.9-beta
2+
3+
* chore: align release version with `clerk_flutter` package
4+
15
## 0.0.8-beta
26

37
* feat: add generated clerk_backend_api package [#82]

packages/clerk_auth/lib/src/_version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/clerk_auth/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: clerk_auth
22
description: Package that will allow you to authenticate and use Clerk from Dart code.
3-
version: 0.0.8-beta
3+
version: 0.0.9-beta
44
homepage: https://clerk.com/docs
55
repository: https://github.com/clerk/clerk-sdk-flutter/tree/main/packages/clerk_auth
66
issue_tracker: https://github.com/clerk/clerk-sdk-flutter/labels/clerk_auth
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.9-beta
2+
3+
* chore: align release version with `clerk_flutter` package
4+
15
## 0.0.8-beta
26

37
* Initial release

packages/clerk_backend_api/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
name: 'clerk_backend_api'
6-
version: '0.0.8-beta'
6+
version: '0.0.9-beta'
77
description: 'The Clerk REST Backend API, meant to be accessed by backend servers.'
88
homepage: 'https://clerk.com/docs'
99
repository: https://github.com/clerk/clerk-sdk-flutter/tree/main/packages/clerk_backend_api

packages/clerk_flutter/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.0.9-beta
2+
3+
* feat: support fall-back localization default English [#163]
4+
* fix: update user agent to support desktop/mobile modes [#166]
5+
16
## 0.0.8-beta
27

38
* feat: add generated clerk_backend_api package [#82]

packages/clerk_flutter/lib/src/generated/clerk_sdk_localizations.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import 'package:intl/intl.dart' as intl;
88

99
import 'clerk_sdk_localizations_en.dart';
1010

11+
// ignore_for_file: type=lint
12+
1113
/// Callers can lookup localized strings with an instance of ClerkSdkLocalizations
1214
/// returned by `ClerkSdkLocalizations.of(context)`.
1315
///

packages/clerk_flutter/lib/src/generated/clerk_sdk_localizations_en.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import 'clerk_sdk_localizations.dart';
44

5+
// ignore_for_file: type=lint
6+
57
/// The translations for English (`en`).
68
class ClerkSdkLocalizationsEn extends ClerkSdkLocalizations {
79
ClerkSdkLocalizationsEn([String locale = 'en']) : super(locale);

packages/clerk_flutter/lib/src/widgets/organization/clerk_organization_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,5 +366,5 @@ class _Organization {
366366
int get hashCode => orgId.hashCode;
367367

368368
@override
369-
operator ==(dynamic other) => other is _Organization && orgId == other.orgId;
369+
operator ==(Object other) => other is _Organization && orgId == other.orgId;
370370
}

packages/clerk_flutter/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: clerk_flutter
22
description: Package that will allow you to authenticate and use Clerk from Flutter code.
3-
version: 0.0.8-beta
3+
version: 0.0.9-beta
44
homepage: https://clerk.com/docs
55
repository: https://github.com/clerk/clerk-sdk-flutter/tree/main/packages/clerk_flutter
66
issue_tracker: https://github.com/clerk/clerk-sdk-flutter/labels/clerk_flutter
@@ -17,12 +17,12 @@ dependencies:
1717
flutter_localizations:
1818
sdk: flutter
1919
adaptive_dialog: ^1.10.1
20-
clerk_auth: '>=0.0.6-dev <1.0.0'
20+
clerk_auth: '>=0.0.9-beta <1.0.0'
2121
collection: ^1.17.1
2222
email_validator: ^3.0.0
2323
flutter_svg: ^2.0.10+1
2424
image_picker: ^1.0.7
25-
intl: any
25+
intl: '>=0.18.0 <1.0.0'
2626
path_provider: ^2.1.2
2727
phone_input: ^1.0.0
2828
webview_flutter: ^4.4.3

0 commit comments

Comments
 (0)