Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Sep 13, 2023
2 parents 64bdb7e + d3281a9 commit 20abd59
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,15 @@ defaults:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.OS }}

strategy:
fail-fast: false
matrix:
DART_VERSION:
# https://dart.dev/get-dart/archive
- stable
- 2.19.6
- 2.12.4
- 3.1.1
OS:
- ubuntu-latest
- macos-latest
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- require Dart 3.0.0 or higher


## [3.0.6] - 2023-04-03

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ hotreloader 1.x-2.x requires [Dart SDK](https://dart.dev/get-dart) **2.6.0** or

hotreloader 3.x requires [Dart SDK](https://dart.dev/get-dart) **2.12.0** or higher.

hotreloader 4.x requires [Dart SDK](https://dart.dev/get-dart) **3.0.0** or higher.


## <a name="how-to-use"></a>How to use

Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://dart.dev/tools/pub/pubspec
name: hotreloader
version: 3.0.7-SNAPSHOT
version: 4.0.0-SNAPSHOT

description: >
Automatic hot code reloader for Dart projects that monitors the source files of a Dart
Expand All @@ -13,7 +13,7 @@ issue_tracker: https://github.com/vegardit/dart-hotreloader/issues

environment:
# https://dart.dev/tools/pub/pubspec#sdk-constraints
sdk: ">=2.12.0 <3.0.0"
sdk: ">=3.0.0 <4.0.0"

# https://dart.dev/tools/pub/dependencies#version-constraints
dependencies:
Expand All @@ -22,7 +22,7 @@ dependencies:
path: ^1.8.0 # https://pub.dev/packages/path
stream_transform: ^2.0.0 # https://pub.dev/packages/stream_transform
vm_service: ">=6.0.1 <12.0.0" # https://pub.dev/packages/vm_service
watcher: ^1.0.0 # https://pub.dev/packages/watcher
watcher: ^1.1.0 # https://pub.dev/packages/watcher

dev_dependencies:
lint: ^1.5.3 # >=1.6.0 requires SDK version >=2.13.0
lint: ^2.1.2

0 comments on commit 20abd59

Please sign in to comment.