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
12 changes: 7 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Dart SDK
uses: dart-lang/setup-dart@v1
- name: Set up Flutter SDK
uses: subosito/flutter-action@v2
with:
channel: stable

- name: Install dependencies
run: dart pub get
run: flutter pub get

- name: Validate package
run: dart pub publish --dry-run
run: flutter pub publish --dry-run

- name: Publish package
run: dart pub publish --force
run: flutter pub publish --force
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.1.4] - 02/03/2026

- Replicate upstream Dart SDK constraint bump from `ofload/native_updater` PR #35.
- Update Dart SDK constraint to `>=2.17.0 <4.0.0`.
- Credit: original change authored by [@rounaktadvi](https://github.com/rounaktadvi) (Rounak Tadvi).

## [0.1.3] - 02/03/2026

- Replicate upstream AndroidX compatibility fix from `ofload/native_updater` PR #39.
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.2"
version: "0.1.4"
package_info_plus:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: native_updater
description: Flutter package for prompting users to update with a native dialog whether using the app store version or any version at the user's discretion.

version: 0.1.3
version: 0.1.4
homepage: https://github.com/milhomem/native_updater

environment:
sdk: '>=2.12.0 <4.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
flutter:
Expand Down