Skip to content

Commit

Permalink
Version up
Browse files Browse the repository at this point in the history
  • Loading branch information
vint21h committed Nov 16, 2021
1 parent bd45409 commit fc27802
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,9 @@
[//]: # (CHANGELOG.md)


# 0.3.1
* Fixed dependabot config

# 0.3.0
* Updated Dart and Python requirements
* Renamed DMAP code constants following Dart constants naming convention
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -26,7 +26,7 @@ Contents

[...]
dependencies:
daapc: "0.3.0"
daapc: "0.3.1"
[...]
```
* Install it:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/constants.dart
Expand Up @@ -895,7 +895,7 @@ final Map<String, DmapCode> dmapCodeTypes = {
final Map<String, String> requestHeaders = {
"Client-DAAP-Version": "3.0",
"Client-DAAP-Access-Index": "2",
"User-Agent": "daapc/0.3.0 (https://github.com/vint21h/dart-daap-client/)",
"User-Agent": "daapc/0.3.1 (https://github.com/vint21h/dart-daap-client/)",
"Accept": "application/x-dmap-tagged",
};

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Expand Up @@ -3,7 +3,7 @@


name: "daapc"
version: "0.3.0"
version: "0.3.1"
description: >-
dart-daap-client is a Dart DAAP (Digital Audio Access Protocol) protocol client library
homepage: "https://github.com/vint21h/dart-daap-client/"
Expand Down
4 changes: 2 additions & 2 deletions test/client_test.dart
Expand Up @@ -38,7 +38,7 @@ void main() {
"Client-DAAP-Version": "3.0",
"Client-DAAP-Access-Index": "2",
"User-Agent":
"daapc/0.3.0 (https://github.com/vint21h/dart-daap-client/)",
"daapc/0.3.1 (https://github.com/vint21h/dart-daap-client/)",
"Accept": "application/x-dmap-tagged",
"Client-DAAP-Request-ID": "0",
};
Expand All @@ -53,7 +53,7 @@ void main() {
"Client-DAAP-Version": "3.0",
"Client-DAAP-Access-Index": "2",
"User-Agent":
"daapc/0.3.0 (https://github.com/vint21h/dart-daap-client/)",
"daapc/0.3.1 (https://github.com/vint21h/dart-daap-client/)",
"Accept": "application/x-dmap-tagged",
"Client-DAAP-Request-ID": "1",
};
Expand Down

0 comments on commit fc27802

Please sign in to comment.