Skip to content

Commit

Permalink
chore(release): 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deandreamatias-worldline committed Jul 2, 2024
1 parent c7caa42 commit f9cbc0a
Show file tree
Hide file tree
Showing 50 changed files with 836 additions and 905 deletions.
3 changes: 3 additions & 0 deletions .fvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"flutter": "3.10.6"
}
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Bug report
about: Something is crashing or not working as intended
labels: bug

---

## Environment

**Platform:** <!-- iOS, Android, Web, etc -->
**Device information:** <!-- Manufacturer and model -->

## Description

**Expected behavior:**

**Current behavior:**

## Steps to reproduce

1. This
2. Than that
3. Then

## Images <!-- if available, else delete -->

## Stacktrace/Logcat <!-- if available, else delete -->
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Feature request
about: Suggest an idea for this project
labels: enhancement

---

## Environment

**Platform:** <!-- iOS, Android, etc -->
**Device information:** <!-- Manufacturer and model -->

## Description

**What you'd like to happen:**

**Alternatives you've considered:** <!-- if available, else delete -->

**Images:** <!-- if available, else delete -->
24 changes: 24 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## Connection with issue(s)

Resolve issue #???

<!-- Required: this reference (one or many) will be closed upon merge. Ideally it has the acceptance criteria and designs for features or fixes related to the work in this Pull Request -->

Connected to #???

<!-- Optional: other issues or pull requests related to this, but merging should not close it -->

## Testing and Review Notes

<!-- Required: steps to take to confirm this works as expected or other guidance for code, UX, and any other reviewers -->

## Screenshots or Videos

<!-- Optional: to clearly demonstrate the feature or fix to help with testing and reviews -->

## To Do

<!-- Add “WIP” to the PR title if pushing up but not complete nor ready for review -->
- [ ] double check the original issue to confirm it is fully satisfied
- [ ] add testing notes and screenshots in PR description to help guide reviewers
- [ ] request the "UX" team perform a design review (if/when applicable)
66 changes: 66 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Build

on:
push:
branches: [main]
tags:
- '[0-9]+.[0-9]+.[0-9]+*'

pull_request:
branches: [main]

workflow_dispatch:

jobs:
build:
name: Build and test
runs-on: macos-latest

steps:
- name: Configure enviroment
uses: actions/checkout@v3
- name: Check broken links
uses: JustinBeckwith/linkinator-action@v1
with:
paths: "**/*.md"
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
with:
path: '.fvmrc'
- name: Download flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }}
cache: true
cache-key: 'flutter-:os:-:version:'
cache-path: '${{ runner.tool_cache }}/flutter/:os:-:version:'
- name: Install dependencies
run: flutter pub get
- name: Format code
run: dart format --set-exit-if-changed .
- name: Analyze static code
run: flutter analyze
- name: Check publish warnings
run: dart pub publish --dry-run

# Disabled until unblock release process
# deployment:
# if: ${{ github.ref_type == 'tag' }}
# needs: build
# name: Deploy package
# permissions:
# id-token: write
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: dart-lang/setup-dart@v1
# - uses: kuhnroyal/flutter-fvm-config-action@v1
# - name: Download flutter
# uses: subosito/flutter-action@v2
# with:
# flutter-version: ${{ env.FLUTTER_VERSION }}
# cache: true
# cache-key: 'flutter-:os:-:version:'
# cache-path: '${{ runner.tool_cache }}/flutter/:os:-:version:'
# - name: Publish package
# run: dart pub publish -v -f
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
.vscode/

# Flutter/Dart/Pub related
**/doc/api/
Expand Down Expand Up @@ -47,3 +47,6 @@ app.*.map.json
# Firebase
example/android/app/google-services.json
example/ios/Runner/GoogleService-Info.plist

# FVM Version Cache
.fvm/
74 changes: 45 additions & 29 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,64 @@
## [1.0.0] - 23/07/2021
## 5.1.0

* First version of common module flutter (not null safety)

## [2.0.0] - 21/08/2021

* Migrated to null safety
* Fix english language in sample app
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to version 2.1.8. Only for Android.
* Improve linting.
* Refactor package to pub dev standards.
* Refactor documentation.
* Add GitHub templates.

## [2.0.1] - 31/08/2021
## 5.0.4

* Fix Version Control Popup Context

## [3.0.0] - 02/02/2022

* Using [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) (
developed using Kotlin Multiplatform Mobile, KMM) to implement the functionality of this library.
This library is now a wrapper of the one developed in KMM.
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to version 2.1.7.

## [3.0.1] - 21/02/2022
## 5.0.0

* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to
version 1.0.10. This version fixes a bug of the rating popup in iOS.
version 2.0.16. Updated to version 5.0.0 of modul_comu_osam_flutter, it has flutter 3.X support.

## [3.0.2] - 22/02/2022
## 4.0.2

* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to
version 1.0.11. This version fixes a bug when using Proguard in Android.
version 2.0.2. This version has the following changes:
* Version: Fix bug related to URL handling

## 4.0.1

## [4.0.0] - 11/04/2022
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to
version 2.0.1. This version has the following changes:
- Version: Integrated capability for enable/disable version control based in a time range
- Rating: Integrated Google In App Review for Android
* Rating: Exclude deprecated rating control responses

## 4.0.0

## [4.0.1] - 26/04/2022
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to
version 2.0.1. This version has the following changes:
- Rating: Exclude deprecated rating control responses
* Version: Integrated capability for enable/disable version control based in a time range
* Rating: Integrated Google In App Review for Android

## 3.0.2

## [4.0.2] - 13/10/2022
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to
version 2.0.2. This version has the following changes:
- Version: Fix bug related to URL handling
version 1.0.11. This version fixes a bug when using Proguard in Android.

## 3.0.1

## [5.0.0] - 04/04/2023
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to
version 2.0.16. Updated to version 5.0.0 of modul_comu_osam_flutter, it has flutter 3.X support.
version 1.0.10. This version fixes a bug of the rating popup in iOS.

## 3.0.0

* Using [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) (
developed using Kotlin Multiplatform Mobile, KMM) to implement the functionality of this library.
This library is now a wrapper of the one developed in KMM.

## 2.0.1

* Fix Version Control Popup Context

## 2.0.0

* Migrated to null safety
* Fix english language in sample app

## 1.0.0

* First version of common module flutter (not null safety)
Loading

0 comments on commit f9cbc0a

Please sign in to comment.