diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 137a0e4..d3a0f34 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -50,3 +50,5 @@ jobs: run: dart format --output=none --set-exit-if-changed . - name: Tests run: dart test + - name: Publish dry-run + run: dart pub publish --dry-run diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4cd10a2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +## 0.1.0-wip + +- Initial release. diff --git a/pubspec.yaml b/pubspec.yaml index 1152db3..6d65dc2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,7 @@ name: dpx +version: 0.1.0-wip description: Execute Dart package binaries -version: 0.1.0 +repository: https://github.com/Workiva/dpx environment: sdk: '>=2.19.0 <4.0.0' @@ -18,6 +19,6 @@ dependencies: yaml: ^3.1.2 dev_dependencies: - dependency_validator: ^3.2.3 + dependency_validator: ^4.1.0 lints: ^2.0.1 test: ^1.24.3