merge fixes
diff --git a/.github/labeler.yml b/.github/labeler.yml
index eca80bb..6e7b9f9 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -80,6 +80,10 @@
- changed-files:
- any-glob-to-any-file: 'pkgs/oauth2/**'
+'package:pub_semver':
+ - changed-files:
+ - any-glob-to-any-file: 'pkgs/pub_semver/**'
+
'package:source_map_stack_trace':
- changed-files:
- any-glob-to-any-file: 'pkgs/source_map_stack_trace/**'
diff --git a/pkgs/pub_semver/.github/workflows/test-package.yml b/.github/workflows/pub_semver.yaml
similarity index 85%
rename from pkgs/pub_semver/.github/workflows/test-package.yml
rename to .github/workflows/pub_semver.yaml
index 5bf727c..ba0db18 100644
--- a/pkgs/pub_semver/.github/workflows/test-package.yml
+++ b/.github/workflows/pub_semver.yaml
@@ -1,17 +1,28 @@
-name: Dart CI
+name: package:pub_semver
on:
# Run on PRs and pushes to the default branch.
push:
- branches: [ master ]
+ branches: [ main ]
+ paths:
+ - '.github/workflows/pub_semver.yaml'
+ - 'pkgs/pub_semver/**'
pull_request:
- branches: [ master ]
+ branches: [ main ]
+ paths:
+ - '.github/workflows/pub_semver.yaml'
+ - 'pkgs/pub_semver/**'
schedule:
- cron: "0 0 * * 0"
env:
PUB_ENVIRONMENT: bot.github
+
+defaults:
+ run:
+ working-directory: pkgs/pub_semver/
+
jobs:
# Check code formatting and static analysis on a single OS (linux)
# against Dart dev.
diff --git a/README.md b/README.md
index 50517c3..697a16c 100644
--- a/README.md
+++ b/README.md
@@ -33,6 +33,7 @@
| [json_rpc_2](pkgs/json_rpc_2/) | Utilities to write a client or server using the JSON-RPC 2.0 spec. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Ajson_rpc_2) | [](https://pub.dev/packages/json_rpc_2) |
| [mime](pkgs/mime/) | Utilities for handling media (MIME) types, including determining a type from a file extension and file contents. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Amime) | [](https://pub.dev/packages/mime) |
| [oauth2](pkgs/oauth2/) | A client library for authenticating with a remote service via OAuth2 on behalf of a user, and making authorized HTTP requests with the user's OAuth2 credentials. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aoauth2) | [](https://pub.dev/packages/oauth2) |
+| [pub_semver](pkgs/pub_semver/) | Versions and version constraints implementing pub's versioning policy. This is very similar to vanilla semver, with a few corner cases. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Apub_semver) | [](https://pub.dev/packages/pub_semver) |
| [source_map_stack_trace](pkgs/source_map_stack_trace/) | A package for applying source maps to stack traces. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asource_map_stack_trace) | [](https://pub.dev/packages/source_map_stack_trace) |
| [unified_analytics](pkgs/unified_analytics/) | A package for logging analytics for all Dart and Flutter related tooling to Google Analytics. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aunified_analytics) | [](https://pub.dev/packages/unified_analytics) |
diff --git a/pkgs/pub_semver/.github/dependabot.yaml b/pkgs/pub_semver/.github/dependabot.yaml
deleted file mode 100644
index bf6b38a..0000000
--- a/pkgs/pub_semver/.github/dependabot.yaml
+++ /dev/null
@@ -1,14 +0,0 @@
-# Dependabot configuration file.
-version: 2
-
-updates:
- - package-ecosystem: github-actions
- directory: /
- schedule:
- interval: monthly
- labels:
- - autosubmit
- groups:
- github-actions:
- patterns:
- - "*"
diff --git a/pkgs/pub_semver/CHANGELOG.md b/pkgs/pub_semver/CHANGELOG.md
index 83474d2..a31fbb2 100644
--- a/pkgs/pub_semver/CHANGELOG.md
+++ b/pkgs/pub_semver/CHANGELOG.md
@@ -1,6 +1,7 @@
-## 2.1.5-wip
+## 2.1.5
- Require Dart `3.4.0`.
+- Move to `dart-lang/tools` monorepo.
## 2.1.4
diff --git a/pkgs/pub_semver/README.md b/pkgs/pub_semver/README.md
index ad0740c..03c92a3 100644
--- a/pkgs/pub_semver/README.md
+++ b/pkgs/pub_semver/README.md
@@ -1,5 +1,5 @@
-[](https://github.com/dart-lang/pub_semver/actions/workflows/test-package.yml)
-[](https://pub.dev/packages/pub_semver)
+[](https://github.com/dart-lang/tools/actions/workflows/pub_semver.yaml)
+[](https://pub.dev/packages/pub_semver)
[](https://pub.dev/packages/pub_semver/publisher)
Handles version numbers and version constraints in the same way that [pub][]
diff --git a/pkgs/pub_semver/pubspec.yaml b/pkgs/pub_semver/pubspec.yaml
index 192de00..290fb92 100644
--- a/pkgs/pub_semver/pubspec.yaml
+++ b/pkgs/pub_semver/pubspec.yaml
@@ -1,5 +1,5 @@
name: pub_semver
-version: 2.1.5-wip
+version: 2.1.5
description: >-
Versions and version constraints implementing pub's versioning policy. This
is very similar to vanilla semver, with a few corner cases.