Skip to content

Commit 86b3894

Browse files
committed
fix: exported exception types so they can be caught
1 parent f06abfa commit 86b3894

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.0.3
4+
5+
- Exported exception types so that they can be caught by calling clients.
6+
37
## 1.0.2
48

59
- Updated to the more permissive MIT license.

lib/soundcloud_explode_dart.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
library;
33

44
export 'src/soundcloud_client.dart';
5+
export 'src/exceptions/exceptions.dart';
56
export 'src/playlists/playlists.dart';
67
export 'src/search/search.dart';
78
export 'src/tracks/tracks.dart';

lib/src/exceptions/exceptions.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export 'client_unauthorized_exception.dart';
2+
export 'search_result_exception.dart';
3+
export 'soundcloud_explode_exception.dart';
4+
export 'track_resolution_exception.dart';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: soundcloud_explode_dart
2-
version: 1.0.2
2+
version: 1.0.3
33
description: Scrape metadata about users, tracks, playlists, and albums from SoundCloud without requiring an account, API key, or rate-limiting.
44
homepage: https://github.com/codedbycurtis/soundcloud_explode_dart
55
repository: https://github.com/codedbycurtis/soundcloud_explode_dart

0 commit comments

Comments
 (0)