Skip to content

Commit

Permalink
chore: bump version for next release, generate changelog and web unsu…
Browse files Browse the repository at this point in the history
…pported exception
  • Loading branch information
KRTirtho committed Sep 27, 2022
1 parent 5867b3b commit f5e6001
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 0.3.0 (2022-09-27)

### Features
* iOS support

### Fixes
* macOS unable to load shared dynamic library
## 0.2.0 (2022-09-01)

### Breaking
Expand Down
8 changes: 6 additions & 2 deletions lib/src/metadata_god_web.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ class MetadataGod {
static registerWith([dynamic _]) {}

static Future<Metadata?> getMetadata(String file) async {
return null;
throw UnimplementedError("getMetadata is not implemented for the web");
}

static Future<void> writeMetadata(String file, Metadata metadata) async {}
static Future<void> writeMetadata(String file, Metadata metadata) async {
throw UnimplementedError(
"writeMetadata is not implemented for the web",
);
}

static Future<String> ping() async {
return "ping";
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: metadata_god
description: Plugin for retrieving and writing audio tags/metadata from audio files
version: 0.2.0
version: 0.3.0
homepage: https://github.com/KRTirtho/metadata_god

environment:
Expand Down

0 comments on commit f5e6001

Please sign in to comment.