Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '3.22.0' ]
version: [ '3.24.0' ]
defaults:
run:
working-directory: ./example
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '3.22.0' ]
version: [ '3.24.0' ]
steps:
- uses: actions/checkout@v5

Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [Unreleased]

- Update dependencies:
- `shared_preferences` to `^2.5.3`.
- `meta` to `^1.17.0`.
- `flutter_lints` to `^6.0.0`.
- `collection` to `^1.19.1`.
- `shared_preferences_platform_interface` to `2.4.1`.
- `plugin_platform_interface` to `2.1.8`.
- Change `Dart SDK` constraint to `'>=3.8.0 <4.0.0'`.
- Change `Flutter` constraint to `'>=3.24.0'`.
- Update Android `compileSdkVersion` and `targetSdkVersion` to `35`.
- Replace deprecated `jcenter()` with `mavenCentral()` in Android build.gradle.

## 4.0.0 - Jul 20, 2024

- Update dependencies:
Expand Down
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if (flutterVersionName == null) {
}

android {
compileSdkVersion 34
compileSdkVersion 35
namespace 'com.hoc.example'

sourceSets {
Expand All @@ -41,7 +41,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.hoc.example"
minSdkVersion 24
targetSdkVersion 34
targetSdkVersion 35
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
Expand Down
2 changes: 1 addition & 1 deletion example/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}

Expand Down
10 changes: 5 additions & 5 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version: 3.0.0+1
publish_to: none

environment:
sdk: '>=3.4.0 <4.0.0'
flutter: '>=3.22.0'
sdk: '>=3.8.0 <4.0.0'
flutter: '>=3.24.0'

dependencies:
flutter:
Expand All @@ -14,14 +14,14 @@ dependencies:
flutter_provider: ^2.1.0
rxdart_ext: ^0.3.0
rx_shared_preferences:
shared_preferences: ^2.3.0
collection: ^1.17.0
shared_preferences: ^2.5.3
collection: ^1.19.1
dependency_overrides:
rx_shared_preferences:
path: ../

dev_dependencies:
flutter_lints: ^4.0.0
flutter_lints: ^6.0.0
flutter_test:
sdk: flutter

Expand Down
16 changes: 8 additions & 8 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ funding:
- https://www.buymeacoffee.com/hoc081098

environment:
sdk: '>=3.4.0 <4.0.0'
flutter: '>=3.22.0'
sdk: '>=3.8.0 <4.0.0'
flutter: '>=3.24.0'

topics:
- rxdart
Expand All @@ -21,14 +21,14 @@ topics:
dependencies:
flutter:
sdk: flutter
shared_preferences: ^2.3.0
shared_preferences: ^2.5.3
rx_storage: ^3.0.0
meta: ^1.7.0
meta: ^1.17.0

dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^2.0.0
shared_preferences_platform_interface: 2.4.0
plugin_platform_interface: 2.1.7
collection: ^1.16.0
flutter_lints: ^6.0.0
shared_preferences_platform_interface: 2.4.1
plugin_platform_interface: 2.1.8
collection: ^1.19.1
Loading