Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/espresso/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.4.0+15

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

According to the pub versioning philosophy, increasing the minimum Flutter SDK version is a breaking change.1 For a package with a version less than 1.0.0, this should be a minor version bump. Please update the version to 0.5.0.

Suggested change
## 0.4.0+15
## 0.5.0

Style Guide References

Footnotes

  1. The style guide states that bumping the minimum Flutter version is a breaking change, which requires a major version increment (or minor for pre-1.0.0 packages).

Copy link
Collaborator

@stuartmorgan-g stuartmorgan-g Oct 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to the pub versioning philosophy, increasing the minimum Flutter SDK version is a breaking change.
[...]
The style guide states that bumping the minimum Flutter version is a breaking change

Sure, Jan.


* Updates Java compatibility version to 17.
* Updates minimum supported SDK version to Flutter 3.35/Dart 3.9.

## 0.4.0+14

* Bumps okhttp, junit, and truth dependencies.
Expand Down
4 changes: 2 additions & 2 deletions packages/espresso/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

lintOptions {
Expand Down
6 changes: 3 additions & 3 deletions packages/espresso/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ description: Java classes for testing Flutter apps using Espresso.
Allows driving Flutter widgets from a native Espresso test.
repository: https://github.com/flutter/packages/tree/main/packages/espresso
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+espresso%22
version: 0.4.0+14
version: 0.4.0+15

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Bumping the minimum required Flutter version is a breaking change according to the pub versioning philosophy.1 For a pre-1.0.0 package, this should be reflected as a minor version bump. Please consider changing the version to 0.5.0.

version: 0.5.0

Style Guide References

Footnotes

  1. The style guide considers bumping the minimum Flutter version a breaking change. For pre-1.0.0 packages, this should result in a minor version bump (e.g., 0.4.x to 0.5.0).


environment:
sdk: ^3.7.0
flutter: ">=3.29.0"
sdk: ^3.9.0
flutter: ">=3.35.0"

flutter:
plugin:
Expand Down