File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.0.3
2
+
3
+ - Changed import for HttpStatus
4
+ - Added export for oauth2 package exceptions
5
+
1
6
## 0.0.2
2
7
3
8
- Fixed dart formatting
Original file line number Diff line number Diff line change 1
- /// Support for doing something awesome .
1
+ /// OAuthChopper for configuring OAuth authentication with [Chopper] .
2
2
///
3
3
/// More dartdocs go here.
4
4
library oauth_chopper;
5
5
6
+ export 'package:oauth2/src/authorization_exception.dart' ;
7
+ export 'package:oauth2/src/expiration_exception.dart' ;
8
+
6
9
export 'src/oauth_chopper.dart' ;
7
10
export 'src/oauth_grant.dart' ;
8
- export 'src/storage/oauth_storage.dart' ;
9
-
10
- // TODO: Export any libraries intended for clients of this package.
11
+ export 'src/storage/oauth_storage.dart' ;
Original file line number Diff line number Diff line change 1
1
import 'dart:async' ;
2
- import 'dart:io ' ;
2
+ import 'dart:html ' ;
3
3
4
4
import 'package:chopper/chopper.dart' ;
5
5
import 'package:oauth_chopper/oauth_chopper.dart' ;
Original file line number Diff line number Diff line change 1
1
name : oauth_chopper
2
2
description : Add and manage OAuth2 authentication for your Chopper client.
3
- version : 0.0.2
3
+ version : 0.0.3
4
4
homepage : https://github.com/DutchCodingCompany/oauth_chopper
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments