Skip to content

Commit 98f4a26

Browse files
authoredApr 12, 2024··
feat: Add support for Dart 3.1, 3.2, 3.3; remove support for Dart 2.19 (#993)
BREAKING CHANGE: This release removes support for Dart 2.19.
1 parent 3849065 commit 98f4a26

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+133
-151
lines changed
 

‎.github/workflows/ci.yml

+12-9
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,25 @@ jobs:
1616
include:
1717
# Dart framework may contain breaking changes in minor version releases, not following semver.
1818
# The latest Dart framework (below) is tested on all architectures (Ubuntu, macOS, Windows).
19-
- name: Dart 3.1, Ubuntu
19+
- name: Dart 3.3, Ubuntu
2020
os: ubuntu-latest
21-
sdk: 3.1.2
22-
- name: Dart 3.1, macOS
21+
sdk: 3.3.3
22+
- name: Dart 3.3, macOS
2323
os: macos-latest
24-
sdk: 3.1.2
25-
- name: Dart 3.1, Windows
24+
sdk: 3.3.3
25+
- name: Dart 3.3, Windows
2626
os: windows-latest
27-
sdk: 3.1.2
27+
sdk: 3.3.3
2828
# Older Dart framework versions (below) are only tested with Ubuntu to reduce CI resource usage.
29+
- name: Dart 3.2
30+
os: ubuntu-latest
31+
sdk: 3.2.6
32+
- name: Dart 3.1
33+
os: ubuntu-latest
34+
sdk: 3.1.5
2935
- name: Dart 3.0
3036
os: ubuntu-latest
3137
sdk: 3.0.7
32-
- name: Dart 2.19
33-
os: ubuntu-latest
34-
sdk: 2.19.6
3538
- name: Dart beta
3639
os: ubuntu-latest
3740
sdk: beta

‎packages/dart/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [7.0.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-6.4.0...dart-7.0.0) (2024-04-12)
2+
3+
### BREAKING CHANGES
4+
5+
* This release removes support for Dart 2.19 ([#993](https://github.com/parse-community/Parse-SDK-Flutter/pull/993))
6+
7+
### Features
8+
9+
* Add support for Dart 3.1, 3.2, 3.3; remove support for Dart 2.19 ([#993](https://github.com/parse-community/Parse-SDK-Flutter/pull/993))
10+
111
## [6.4.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-6.3.0...dart-6.4.0) (2024-03-30)
212

313
### Features

0 commit comments

Comments
 (0)
Please sign in to comment.