Skip to content

Commit

Permalink
PUBLISH V1.8.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalmai221 committed Oct 25, 2024
1 parent 4cd5641 commit f5af104
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/GitHub-Publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ jobs:
id: create_release
run: |
TAG_NAME="${{ env.VERSION }}" # Use the extracted version as the tag name
BODY="**Full Changelog**: https://github.com/Kalmai221/flask-profiler/compare/${{ github.event.release.tag_name }}...$TAG_NAME"
PREVIOUS_TAG="${{ github.event.release.tag_name }}" # Get the previous release tag
# Create body with the correct changelog URL
BODY="**Full Changelog**: https://github.com/Kalmai221/flask-profiler/compare/$PREVIOUS_TAG...$TAG_NAME"
# Create release on GitHub
RESPONSE=$(curl -s -X POST \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Flask-ProfilerForked

**Version: 1.8.2.2**
**Version: 1.8.2.3**

Flask-ProfilerForked measures the performance of your Flask application endpoints and provides detailed reports through a user-friendly web interface.

Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 1.8.2
Version 1.8.2.3
====================
- Bug Fixes
- Added Optional Debug Logging to Developers
Expand Down
2 changes: 1 addition & 1 deletion flask_profiler/static/dist/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
V1.8.2.2
V1.8.2.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name='Flask-ProfilerForked',
version='1.8.2.1',
version='1.8.2.3',
url='https://github.com/Kalmai221/flask-profiler',
license=open('LICENSE').read(),
author='Kalmai221',
Expand Down

0 comments on commit f5af104

Please sign in to comment.