Skip to content

Commit

Permalink
Merge pull request #97 from monocle2ai/monocle_release_pypi
Browse files Browse the repository at this point in the history
added changelog and release
  • Loading branch information
kshitiz-okahu authored Dec 10, 2024
2 parents a935457 + 2e5d7f6 commit 18b5a4c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/prepare-release-branch.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#
name: Prepare release branch
on:
push:
branches:
- release_test_temp
workflow_dispatch:
inputs:
prerelease_version:
Expand All @@ -24,7 +21,7 @@ jobs:
env:
PRERELEASE_VERSION: ${{ github.event.inputs.prerelease_version }}
run: |
if [[ $GITHUB_REF_NAME != release_test_temp ]]; then
if [[ $GITHUB_REF_NAME != main ]]; then
echo this workflow should only be run against main
exit 1
fi
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ jobs:
run: |
twine upload --repository testpypi --skip-existing --verbose dist/*
# - name: Publish to PyPI
# env:
# TWINE_USERNAME: '__token__'
# TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
# run: |
# twine upload --skip-existing --verbose dist/*
- name: Publish to PyPI
env:
TWINE_USERNAME: '__token__'
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
twine upload --skip-existing --verbose dist/*
- name: Generate release notes
env:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## Unreleased

- Add dev dependency for Mistral AI integration ([#81](https://github.com/monocle2ai/monocle/pull/81))
- Add VectorStore deployment URL capture support ([#80](https://github.com/monocle2ai/monocle/pull/80))
- Clean up cloud exporter implementation ([#79](https://github.com/monocle2ai/monocle/pull/79))
- Capture inference span input/output events attributes ([#77](https://github.com/monocle2ai/monocle/pull/77))
- Add release automation workflows ([#76](https://github.com/monocle2ai/monocle/pull/76))
- Fix gaps in Monocle SDK implementation ([#72](https://github.com/monocle2ai/monocle/pull/72))
- Add kwargs and return value handling in Accessor ([#71](https://github.com/monocle2ai/monocle/pull/71))
- Update workflow name formatting ([#69](https://github.com/monocle2ai/monocle/pull/69))
- Implement Haystack metamodel support ([#68](https://github.com/monocle2ai/monocle/pull/68))

## Version 0.2.0 (2024-12-05)

## 0.2.0 (Oct 22, 2024)
Expand Down

0 comments on commit 18b5a4c

Please sign in to comment.