Skip to content

Commit

Permalink
[process_run] v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Jun 29, 2024
1 parent 26128b6 commit 891dfcf
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/process_run/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.0.0-1
## 1.0.0

* add `ShellStdio` and `shellStdioLinesGrouper` to allow grouping stdout and stderr lines by zones.

Expand Down
4 changes: 2 additions & 2 deletions packages/process_run/lib/src/bin/shell/shell.dart
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import 'package:process_run/shell.dart';
import 'package:process_run/src/bin/shell/run.dart';
// ignore: import_of_legacy_library_into_null_safe
import 'package:process_run/src/version.dart';
import 'package:pub_semver/pub_semver.dart';

import 'env.dart';
import 'import.dart';

Version shellBinVersion = Version(0, 2, 0);
Version shellBinVersion = Version.parse(packageVersion);

const flagHelp = 'help';
const flagInfo = 'info';
Expand Down
2 changes: 2 additions & 0 deletions packages/process_run/lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/process_run/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: process_run
version: 1.0.0-1
version: 1.0.0
description: Process run helpers for Linux/Win/Mac and which like feature for finding executables.
homepage: https://github.com/tekartik/process_run.dart/blob/master/packages/process_run

Expand All @@ -22,7 +22,7 @@ dev_dependencies:
async: '>=2.5.0'
build_runner: '>=1.11.2'
build_test: '>=1.3.7'

build_version: '>=2.0.0'
executables:
# Shell helper
ds: shell
Expand Down
5 changes: 5 additions & 0 deletions packages/process_run/tool/pre_publish.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import 'package:process_run/shell.dart';

void main() async {
await run('dart pub run build_runner build --delete-conflicting-outputs');
}

0 comments on commit 891dfcf

Please sign in to comment.