Skip to content

Commit fa17457

Browse files
committed
Merge branch 'release-1.24.0' into dev
2 parents 26d56d0 + 66fc6eb commit fa17457

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ jobs:
8585

8686
cd:
8787
needs: ci
88+
# Note: github.event.pull_request.draft == false WON'T WORK in "if" statement,
89+
# because the triggered event is a push, not a pull_request.
90+
# This means each commit will trigger a release on TestPyPI.
91+
# Those releases will only succeed when each push has a new version number: a1, a2, a3, etc.
8892
if: |
8993
github.event_name == 'push' &&
9094
(

msal/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
# The __init__.py will import this. Not the other way around.
28-
__version__ = "1.23.0" # When releasing, also check and bump our dependencies's versions if needed
28+
__version__ = "1.24.0" # When releasing, also check and bump our dependencies's versions if needed
2929

3030
logger = logging.getLogger(__name__)
3131
_AUTHORITY_TYPE_CLOUDSHELL = "CLOUDSHELL"

0 commit comments

Comments
 (0)