Skip to content

Commit

Permalink
Bring tar to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
simolus3 committed Jul 25, 2023
1 parent 96100af commit 0d7fc03
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions lib/src/third_party/tar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.1

- Fix an incompatibility with Dart 3.1.

## 1.0.0

- __Breaking__ Add class modifiers where applicable.
Expand Down
4 changes: 2 additions & 2 deletions lib/src/third_party/tar/lib/src/writer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ enum OutputFormat {
gnuLongName,
}

final class _WritingSink extends StreamSink<TarEntry> {
final class _WritingSink implements StreamSink<TarEntry> {
final StreamSink<List<int>> _output;
final _SynchronousTarSink _synchronousWriter;
bool _closed = false;
Expand Down Expand Up @@ -273,7 +273,7 @@ final class _SynchronousTarConverter
}
}

final class _SynchronousTarSink extends Sink<SynchronousTarEntry> {
final class _SynchronousTarSink implements Sink<SynchronousTarEntry> {
final OutputFormat _format;
final Sink<List<int>> _output;

Expand Down
2 changes: 1 addition & 1 deletion lib/src/third_party/tar/vendored-pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: tar
description: Memory-efficient, streaming implementation of the tar file format
version: 1.0.0
version: 1.0.1
repository: https://github.com/simolus3/tar/

environment:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/third_party/vendor-state.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ config:
- analysis_options.yaml
tar:
package: tar
version: 1.0.0
version: 1.0.1
import_rewrites: {}
include:
- pubspec.yaml
Expand Down
2 changes: 1 addition & 1 deletion vendor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ vendored_dependencies:
version: 2.0.1
tar:
package: tar
version: 1.0.0
version: 1.0.1

0 comments on commit 0d7fc03

Please sign in to comment.