Skip to content

Commit

Permalink
prepare for v0.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
folaoluwafemi committed Apr 15, 2023
1 parent 35a88dc commit 2631eff
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 27 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,27 @@ jobs:
# file: ./coverage/lcov.info
# token: ${{ secrets.CODECOV_TOKEN }}

build-android:
name: Build android client
needs: [format-and-lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: ${{ env.java_version }}
- name: Cache Flutter dependencies
uses: actions/cache@v1
with:
path: /opt/hostedtoolcache/flutter
key: ${{ runner.OS }}-flutter-install-cache-${{ env.flutter_version }}
- uses: subosito/flutter-action@v1
with:
flutter-version: ${{ env.flutter_version }}
- name: Install dependencies
run: flutter pub get
working-directory: ./example
- name: Build
run: flutter build apk
working-directory: ./example
- run: git diff --exit-code
# build-android:
# name: Build android client
# needs: [format-and-lint]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - uses: actions/setup-java@v1
# with:
# java-version: ${{ env.java_version }}
# - name: Cache Flutter dependencies
# uses: actions/cache@v1
# with:
# path: /opt/hostedtoolcache/flutter
# key: ${{ runner.OS }}-flutter-install-cache-${{ env.flutter_version }}
# - uses: subosito/flutter-action@v1
# with:
# flutter-version: ${{ env.flutter_version }}
# - name: Install dependencies
# run: flutter pub get
# working-directory: ./example
# - name: Build
# run: flutter build apk
# working-directory: ./example
# - run: git diff --exit-code
Empty file removed .vscode/launch.json
Empty file.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,10 @@

## 0.0.2
* reformat example file



## 0.0.3
* update example project
* update readme
* add tests and coverage report for project
* remove redundancies in project
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ add this to your ```pubspec.yaml``` file
dependencies:
flutter:
sdk: flutter
rich_text_editor_flutter: 0.0.1
rich_text_editor_flutter: 0.0.3
```

or
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: rich_text_editor_controller
description:
A very lightweight package that allows rich text editing as well as providing a simple API for data serialization
version: 0.0.2
version: 0.0.3
homepage: https://github.com/folaoluwafemi/rich_text_editor_controller
repository: https://github.com/folaoluwafemi/rich_text_editor_controller

Expand Down

0 comments on commit 2631eff

Please sign in to comment.