Skip to content

Commit

Permalink
chore: publish v0.4.3 (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
dshukertjr authored Mar 1, 2024
1 parent 076e26e commit 0bd892b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 0.4.3

- feat: Add localization / text customization support for all components.
```dart
// Use the `localization` parameter to customize the text of the UI components.
SupaEmailAuth(
localization: const SupaEmailAuthLocalization(
enterEmail: 'What\'s your email?',
enterPassword: 'Enter your password',
),
onSignInComplete: _onSignInComplete,
onSignUpComplete: _onSignUpComplete,
),
```

## 0.4.2

- feat: Add `nativeGoogleAuthConfig` and `enableNativeAppleAuth` parameter to `SupaSocialsAuth` to support native Google and Apple auth.
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: supabase_auth_ui
description: UI library to implement auth forms using Supabase and Flutter
version: 0.4.2
version: 0.4.3
homepage: https://supabase.com
repository: "https://github.com/supabase-community/flutter-auth-ui"
repository: 'https://github.com/supabase-community/flutter-auth-ui'

environment:
sdk: ">=3.0.0 <4.0.0"
flutter: ">=3.0.0"
sdk: '>=3.0.0 <4.0.0'
flutter: '>=3.0.0'

dependencies:
flutter:
Expand Down

0 comments on commit 0bd892b

Please sign in to comment.