Skip to content

Commit

Permalink
🚀 Update docs and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexV525 committed Mar 8, 2024
1 parent 1df7197 commit 07f0415
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 19 deletions.
19 changes: 5 additions & 14 deletions .github/workflows/publish_on_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,14 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install flutter
uses: subosito/flutter-action@v2
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.7.7'
channel: 'stable'
- run: flutter --version
- name: Install dependencies
run: flutter pub get
- name: Install melos
run: flutter pub global activate melos
- name: Get packages
run: |
melos bootstrap
melos run get
- run: flutter pub get
- run: flutter pub global activate melos
- run: melos bootstrap
- name: Try to publish
run: melos publish --yes --dry-run
- name: Write token to local
Expand All @@ -33,4 +25,3 @@ jobs:
echo ${{ secrets.CREDENTIAL_JSON }} > ~/.config/dart/pub-credentials.json
- name: Publish to pub.dev
run: melos publish --yes --no-dry-run

4 changes: 1 addition & 3 deletions .github/workflows/runnable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,5 @@ jobs:
- name: Get melos
run: dart pub global activate melos
- name: Init melos
run: |
melos bootstrap
melos run get
run: melos bootstrap
- run: melos run try_build_web
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,37 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-03-08

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`flutter_image_compress_common` - `v1.0.4`](#flutter_image_compress_common---v104)
- [`flutter_image_compress_platform_interface` - `v1.0.4`](#flutter_image_compress_platform_interface---v104)
- [`flutter_image_compress_web` - `v0.1.4`](#flutter_image_compress_web---v014)

---

#### `flutter_image_compress_common` - `v1.0.4`

- **DEPS**: Bump KGP (Kotlin Gradle Plugin) to `1.8.20`.
- **DEPS**: Bump Java source compatibility and the JVM target to `11.`

#### `flutter_image_compress_platform_interface` - `v1.0.4`

- **FEAT**: Implement `toString` for `CompressError`.

#### `flutter_image_compress_web` - `v0.1.4`

- **DEPS**: Update `js` to `>=0.6.0 <0.8.0`.

## 2023-10-20

### Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.4

- **FEAT**: Implement `toString` for `CompressError`. ([#279](https://github.com/fluttercandies/flutter_image_compress/pull/279))

## 1.0.3

- **DOCS**: Update README ([#266](https://github.com/fluttercandies/flutter_image_compress/issues/266)). ([235643ab](https://github.com/fluttercandies/flutter_image_compress/commit/235643ab0be9c9a39083031d9ab9de06a74241f3))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flutter_image_compress_platform_interface
description: The platform interface of flutter_image_compress.
repository: https://github.com/fluttercandies/flutter_image_compress
version: 1.0.3
version: 1.0.4

environment:
sdk: '>=2.12.0 <4.0.0'
Expand Down
3 changes: 2 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ name: flutter_image_compress_workspace

environment:
sdk: '>=2.18.0 <3.0.0'

dev_dependencies:
melos: ^3.1.0
melos: '>=3.1.0 <5.0.0'

0 comments on commit 07f0415

Please sign in to comment.