From 1f9f4bcf17fcb68ce237aa6d10c6c75e90d94a85 Mon Sep 17 00:00:00 2001 From: Ayush P Gupta Date: Tue, 12 Dec 2023 11:51:42 +0530 Subject: [PATCH] release!: v3.0.1 Signed-off-by: Ayush P Gupta --- .github/workflows/create-release-prod.yml | 26 +++++++++++++++++++++++ CHANGELOG.md | 14 ++++++++++-- example/pubspec.lock | 2 +- pubspec.yaml | 6 +++--- 4 files changed, 42 insertions(+), 6 deletions(-) create mode 100644 .github/workflows/create-release-prod.yml diff --git a/.github/workflows/create-release-prod.yml b/.github/workflows/create-release-prod.yml new file mode 100644 index 0000000..d5e0764 --- /dev/null +++ b/.github/workflows/create-release-prod.yml @@ -0,0 +1,26 @@ +name: Misc on Prod Release + +on: + push: + tags: + - 'v*.*.*' + +jobs: + build: + name: 'Create a new release' + permissions: + contents: write + steps: + - uses: actions/checkout@v3 + with: + persist-credentials: false + + - name: 'Extract changelog' + id: extract-changelog + uses: TheDotLabs/extract-release-notes@main + + - name: Create release + uses: ncipollo/release-action@v1 + with: + body: ${{ steps.extract-changelog.outputs.release_notes }} + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index ba2206f..76ea2b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ -## 3.0.0 +# Change Log -- TODO: Update Changelog. +Official Changelog for different addition, changes, modifications. + +## [3.0.1] + +- chore(misc): update README.md (Ayush P Gupta) +- chore(misc): upgrade package lock (Ayush P Gupta) +- refactor!: v3.0.0 (#34) (Sahil Kumar) +- feat: upgrade example to Flutter 3.0 (#33) (BradInTheUSA) +- fix: late timer issue (#28) (jakeBrightHR) +- Fix timer issue in unit tests (#27) (jakeBrightHR) +- refactor: follow linting rules by Lint package (#26) (Yousef Almutairi) ## [2.0.2+1] diff --git a/example/pubspec.lock b/example/pubspec.lock index 3a4c376..3b47f43 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -7,7 +7,7 @@ packages: path: ".." relative: true source: path - version: "3.0.0" + version: "3.0.1" characters: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 30f0ab7..dedff20 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: avatar_glow homepage: https://github.com/apgapg/avatar_glow -description: A Flutter package providing a Avatar Glow Widget with cool background glowing animation. -version: 3.0.0 +description: A Flutter package providing a Avatar Glow Widget with cool background glowing animation +version: 3.0.1 repository: https://github.com/apgapg/avatar_glow issue_tracker: https://github.com/apgapg/avatar_glow/issues @@ -14,7 +14,7 @@ dependencies: sdk: flutter dev_dependencies: - flutter_lints: ^2.0.0 + flutter_lints: ^3.0.1 topics: - glow-effect