Skip to content

Commit

Permalink
release!: v3.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Ayush P Gupta <ayushpguptaapg@gmail.com>
  • Loading branch information
apgapg committed Dec 12, 2023
1 parent d022915 commit 1f9f4bc
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 6 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/create-release-prod.yml
Original file line number Diff line number Diff line change
@@ -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 }}
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.0.0"
version: "3.0.1"
characters:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -14,7 +14,7 @@ dependencies:
sdk: flutter

dev_dependencies:
flutter_lints: ^2.0.0
flutter_lints: ^3.0.1

topics:
- glow-effect
Expand Down

0 comments on commit 1f9f4bc

Please sign in to comment.