Skip to content

Commit 2edfb9d

Browse files
authored
chore: release v0.0.8-beta (#159)
1 parent 515452c commit 2edfb9d

File tree

13 files changed

+63
-13
lines changed

13 files changed

+63
-13
lines changed

.github/workflows/main.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ jobs:
3636
run: dart format --output=none --set-exit-if-changed .
3737
working-directory: packages/clerk_auth
3838

39+
- name: Verify formatting of clerk_backend_api
40+
run: dart format --output=none --set-exit-if-changed .
41+
working-directory: packages/clerk_backend_api
42+
3943
- name: Verify formatting of clerk_flutter
4044
run: dart format --output=none --set-exit-if-changed .
4145
working-directory: packages/clerk_flutter
@@ -44,6 +48,10 @@ jobs:
4448
run: dart analyze
4549
working-directory: packages/clerk_auth
4650

51+
- name: Analyze clerk_backend_api
52+
run: dart analyze
53+
working-directory: packages/clerk_backend_api
54+
4755
- name: Analyze clerk_flutter
4856
run: flutter analyze
4957
working-directory: packages/clerk_flutter
@@ -58,6 +66,10 @@ jobs:
5866
run: dart test --file-reporter=json:../../reports/clerk_auth.json
5967
working-directory: packages/clerk_auth
6068

69+
- name: Run tests in clerk_backend_api
70+
run: dart test --file-reporter=json:../../reports/clerk_backend_api.json
71+
working-directory: packages/clerk_backend_api
72+
6173
- name: Run tests in clerk_flutter
6274
run: flutter test --file-reporter=json:../../reports/clerk_flutter.json
6375
working-directory: packages/clerk_flutter

openapi_generator/openapi-generator-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"input-spec": "https://raw.githubusercontent.com/clerk/openapi-specs/refs/heads/main/bapi/2024-10-01.yml",
44
"pubName": "clerk_backend_api",
55
"pubDescription": "The Clerk REST Backend API, meant to be accessed by backend servers.",
6-
"pubVersion": "0.0.1-dev",
6+
"pubVersion": "0.0.8-beta",
77
"pubHomepage": "https://clerk.com/docs",
88
"pubRepository": "https://github.com/clerk/clerk-sdk-flutter/tree/main/packages/clerk_backend_api"
99
}

packages/clerk_auth/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.0.8-beta
2+
3+
* feat: add generated clerk_backend_api package [#82]
4+
* feat: implement organizations [#150]
5+
16
## 0.0.7-dev
27

38
* fix: rationalise clerk auth exports [#105]

packages/clerk_auth/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<img src="https://images.clerk.com/static/logo-light-mode-400x400.png" height="90">
33
</p>
44

5-
## Official [Clerk](https://clerk.com) Dart SDK (Pre-release Alpha)
5+
## Official [Clerk](https://clerk.com) Dart SDK (Beta)
66

77
[![Pub Version](https://img.shields.io/pub/v/clerk_auth?color=blueviolet)](https://pub.dev/packages/clerk_auth)
88
[![Pub Points](https://img.shields.io/pub/points/clerk_auth?label=pub%20points)](https://pub.dev/packages/clerk_auth/score)
99
[![chat on Discord](https://img.shields.io/discord/856971667393609759.svg?logo=discord)](https://discord.com/invite/b5rXHjAg7A)
1010
[![documentation](https://img.shields.io/badge/documentation-clerk-green.svg)](https://clerk.com/docs)
1111
[![twitter](https://img.shields.io/twitter/follow/ClerkDev?style=social)](https://twitter.com/intent/follow?screen_name=ClerkDev)
1212

13-
> ### ⚠️ The Clerk Flutter SDK is in Alpha and not recommended for use in production. ⚠️
13+
> ### ⚠️ The Clerk Flutter SDK is in Beta ⚠️
1414
> ❗️ Breaking changes should be expected until the first stable release (1.0.0) ❗️
1515
1616
**Clerk helps developers build user management. We provide streamlined user experiences

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.7-dev
3+
version: 0.0.8-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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.0.8-beta
2+
3+
* Initial release

packages/clerk_backend_api/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Clerk
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

packages/clerk_backend_api/pubspec.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,19 @@
33
#
44

55
name: 'clerk_backend_api'
6-
version: '0.0.1-dev'
6+
version: '0.0.8-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
10+
1011
environment:
11-
sdk: '>=2.12.0 <3.0.0'
12+
sdk: '>=3.0.0 <4.0.0'
13+
1214
dependencies:
1315
collection: '^1.17.0'
1416
http: '>=0.13.0 <0.14.0'
15-
intl: '^0.18.0'
16-
meta: '^1.1.8'
17+
intl: ^0.18.0
18+
meta: ^1.1.8
19+
1720
dev_dependencies:
18-
test: '>=1.16.0 <1.18.0'
21+
test: ^1.25.5

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.8-beta
2+
3+
* feat: add generated clerk_backend_api package [#82]
4+
* feat: implement organizations [#150]
5+
16
## 0.0.7-dev
27

38
* fix: rationalise clerk auth exports [#105]

0 commit comments

Comments
 (0)