Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rev package:file and package:file_testing versions in prep for publishing #599

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pkgs/file/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
## 7.0.1-wip
## 7.0.1

* Update the pubspec repository field to reflect the new package repository.

## 7.0.0

* Dart 3 fixes for class modifiers.
* Require Dart 3.0.
* `MemoryFileSystem` now treats empty paths as non-existent.
* Fix `FileSystem.isLink`/`FileSystem.isLinkSync` to not follow symbolic links.
* Make the return type of `MemoryFile.openRead` and `_ChrootFile.openRead` again
Expand Down
4 changes: 2 additions & 2 deletions pkgs/file/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: file
version: 7.0.1-wip
version: 7.0.1
description:
A pluggable, mockable file system abstraction for Dart. Supports local file
system access, as well as in-memory file systems, record-replay file systems,
and chroot file systems.
repository: https://github.com/dart-lang/tools/tree/main/pkgs/file

environment:
sdk: '>=3.0.0 <4.0.0'
sdk: ^3.0.0

dependencies:
meta: ^1.9.1
Expand Down
5 changes: 3 additions & 2 deletions pkgs/file_testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 3.0.1-wip
## 3.0.1

* Require Dart 3.0 or later.
* Update the pubspec repository field to reflect the new package repository.
* Require Dart 3.0.

## 3.0.0

Expand Down
1 change: 1 addition & 0 deletions pkgs/file_testing/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![pub package](https://img.shields.io/pub/v/file_testing.svg)](https://pub.dev/packages/file_testing)
[![package publisher](https://img.shields.io/pub/publisher/file_testing.svg)](https://pub.dev/packages/file_testing/publisher)

Testing utilities intended to work with `package:file`.

Expand Down
4 changes: 2 additions & 2 deletions pkgs/file_testing/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: file_testing
version: 3.0.1-wip
version: 3.0.1
description: Testing utilities for package:file.
repository: https://github.com/dart-lang/tools/tree/main/pkgs/file_testing

environment:
sdk: '>=3.0.0 <4.0.0'
sdk: ^3.0.0

dependencies:
test: ^1.23.1
Expand Down