Skip to content

Commit

Permalink
Prepare 1.1.0 release (#72)
Browse files Browse the repository at this point in the history
* Prepare 1.1.0 release

- update CHANGELOGS, pubspecs and workflows

- update packages

- update dart and flutter constraints

Closes #71

* Apply changes from CR

- use latest dart 3.1 version in comms-prepare

- remove usage of matrix.channel in flutter_comms-prepare

* Use subosito/flutter-action@v2 in flutter_comms-prepare
  • Loading branch information
lewandowski-jan committed Oct 27, 2023
1 parent d226082 commit 24cdc6c
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/comms-prepare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
sdk: [3.0.0]
sdk: [3.1]

defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/comms-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install Dart
uses: dart-lang/setup-dart@v1
with:
sdk: 3.0.6
sdk: stable

- name: Install mobile-tools
uses: actions/checkout@v3
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/flutter_comms-prepare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ on:

jobs:
main:
name: Flutter ${{ matrix.channel }}${{ matrix.version }}
name: Flutter ${{ matrix.flutter-version }}
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
flutter-version: ['3.10.x']
flutter-version: ['3.13.x']

defaults:
run:
Expand All @@ -30,10 +30,9 @@ jobs:
uses: actions/checkout@v3

- name: Install Flutter
uses: subosito/flutter-action@v2.6.2
uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.channel }}
flutter-version: ${{ matrix.version }}
flutter-version: ${{ matrix.flutter-version }}

- name: flutter pub get
run: flutter pub get
Expand Down
6 changes: 6 additions & 0 deletions packages/comms/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.1.0

- Add common README for packages (#68)

- Add real life example to README (#67)

## 1.0.1

- Move bloc related apis from flutter_comms package and update README (#60)
Expand Down
6 changes: 3 additions & 3 deletions packages/comms/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: comms
description: Simple communication pattern abstraction on streams, created for communication between logic classes.
version: 1.0.1
version: 1.1.0
homepage: https://github.com/leancodepl/comms

environment:
sdk: ">=3.0.0 <4.0.0"
sdk: ">=3.1.0 <4.0.0"

dependencies:
bloc: ^8.1.2
logging: ^1.2.0
meta: ^1.9.1

dev_dependencies:
leancode_lint: ^4.0.0+1
leancode_lint: ^6.0.0
test: ^1.17.5
6 changes: 6 additions & 0 deletions packages/flutter_comms/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.1.0

- Add example of sending one time events from state management to widgets in README (#69)

- Add common README for packages (#68)

## 1.0.0

- Move bloc related apis to comms package, add README (#61)
Expand Down
14 changes: 7 additions & 7 deletions packages/flutter_comms/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: flutter_comms
description: Simple communication pattern abstraction on streams, created for communication between blocs and or widgets.
version: 1.0.0
description: Simple communication pattern abstraction on streams, created for communication between logic classes and or widgets.
version: 1.1.0
homepage: https://github.com/leancodepl/comms

environment:
sdk: ">=3.0.0 <4.0.0"
flutter: ">=3.10.0"
sdk: ">=3.1.0 <4.0.0"
flutter: ">=3.13.0"

dependencies:
comms: ^1.0.1
comms: ^1.1.0
flutter:
sdk: flutter
flutter_hooks: ^0.18.2
flutter_hooks: ^0.20.3
logging: ^1.2.0
meta: ^1.9.1
nested: ^1.0.0

dev_dependencies:
flutter_test:
sdk: flutter
leancode_lint: ^4.0.0+1
leancode_lint: ^6.0.0

0 comments on commit 24cdc6c

Please sign in to comment.