Skip to content

Commit ced40cb

Browse files
committed
Fixed dart formating
1 parent 176116a commit ced40cb

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.0.3
2+
3+
- Changed import for HttpStatus
4+
- Added export for oauth2 package exceptions
5+
16
## 0.0.2
27

38
- Fixed dart formatting

lib/oauth_chopper.dart

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
/// Support for doing something awesome.
1+
/// OAuthChopper for configuring OAuth authentication with [Chopper].
22
///
33
/// More dartdocs go here.
44
library oauth_chopper;
55

6+
export 'package:oauth2/src/authorization_exception.dart';
7+
export 'package:oauth2/src/expiration_exception.dart';
8+
69
export 'src/oauth_chopper.dart';
710
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';

lib/src/oauth_authenticator.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import 'dart:async';
2-
import 'dart:io';
2+
import 'dart:html';
33

44
import 'package:chopper/chopper.dart';
55
import 'package:oauth_chopper/oauth_chopper.dart';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: oauth_chopper
22
description: Add and manage OAuth2 authentication for your Chopper client.
3-
version: 0.0.2
3+
version: 0.0.3
44
homepage: https://github.com/DutchCodingCompany/oauth_chopper
55

66
environment:

0 commit comments

Comments
 (0)