From ade36c475516e079434d7eefd32ff3397620c3cc Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Tue, 15 Oct 2024 21:59:08 +0200 Subject: [PATCH] Fix the repository URL in `pubspec.yaml` (#140) * Fix the repository URL in `pubspec.yaml` The branch name `main` must be preceded by `tree`. * Bump the version to 2.6.1-wip to add a changelog entry --- pkgs/args/CHANGELOG.md | 4 ++++ pkgs/args/pubspec.yaml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/args/CHANGELOG.md b/pkgs/args/CHANGELOG.md index 15b392b1..03e693c5 100644 --- a/pkgs/args/CHANGELOG.md +++ b/pkgs/args/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.6.1-wip + +* Fix the reporitory URL in `pubspec.yaml`. + ## 2.6.0 * Added source argument when throwing a `ArgParserException`. diff --git a/pkgs/args/pubspec.yaml b/pkgs/args/pubspec.yaml index 859e1860..21c9389b 100644 --- a/pkgs/args/pubspec.yaml +++ b/pkgs/args/pubspec.yaml @@ -1,9 +1,9 @@ name: args -version: 2.6.0 +version: 2.6.1-wip description: >- Library for defining parsers for parsing raw command-line arguments into a set of options and values using GNU and POSIX style options. -repository: https://github.com/dart-lang/core/main/pkgs/args +repository: https://github.com/dart-lang/core/tree/main/pkgs/args topics: - cli