Skip to content

Commit

Permalink
v3.2.1
Browse files Browse the repository at this point in the history
- `MimeType`:
  - Added `applicationOctetStream` and `bytes`.

- test: ^1.25.8
- coverage: ^1.9.0
  • Loading branch information
gmpassos committed Aug 9, 2024
1 parent 4496dbf commit 25adab0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 3.2.1

- `MimeType`:
- Added `applicationOctetStream` and `bytes`.

- test: ^1.25.8
- coverage: ^1.9.0

## 3.2.0

- sdk: '>=3.3.0 <4.0.0'
Expand Down
3 changes: 3 additions & 0 deletions lib/src/data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ import 'utils.dart';
/// - pdf: application/pdf
///
class MimeType {
static const applicationOctetStream = 'application/octet-stream';
static const bytes = applicationOctetStream;

static const applicationJson = 'application/json';
static const json = applicationJson;

Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: swiss_knife
description: Dart Useful Tools - collections, math, date, uri, json, events, resources, regexp, etc...
version: 3.2.0
version: 3.2.1
homepage: https://github.com/gmpassos/swiss_knife

environment:
Expand All @@ -12,10 +12,10 @@ dependencies:

dev_dependencies:
lints: ^3.0.0
test: ^1.25.2
test: ^1.25.8
dependency_validator: ^3.2.3
collection: ^1.18.0
coverage: ^1.7.2
coverage: ^1.9.0

#dependency_overrides:
# resource_portable:
Expand Down

0 comments on commit 25adab0

Please sign in to comment.