Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
efunneko committed Jul 11, 2024
2 parents df0fd3d + 6ed035b commit 1c15df5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,10 @@ jobs:
pip install --upgrade pip
pip install hatch
- name: Bump Version
- name: Get Current Version
run: |
CURRENT_VERSION=$(hatch version)
echo "CURRENT_VERSION=${CURRENT_VERSION}" >> $GITHUB_ENV
hatch version "${{ github.event.inputs.version }}"
NEW_VERSION=$(hatch version)
echo "NEW_VERSION=${NEW_VERSION}" >> $GITHUB_ENV
- name: Fail if the current version doesn't exist
if: env.CURRENT_VERSION == ''
Expand All @@ -65,6 +62,12 @@ jobs:
makeLatest: true
generateReleaseNotes: true
tag: ${{ env.CURRENT_VERSION }}

- name: Bump Version
run: |
hatch version "${{ github.event.inputs.version }}"
NEW_VERSION=$(hatch version)
echo "NEW_VERSION=${NEW_VERSION}" >> $GITHUB_ENV
- name: Commit new version
run: |
Expand Down
2 changes: 1 addition & 1 deletion src/solace_ai_connector/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Internal components that are dynamically loaded by the AI Connector
# Listing them here allows for them to use relative imports
__version__ = "0.1.0"
__version__ = "0.1.2"

0 comments on commit 1c15df5

Please sign in to comment.