Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/deploy-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,14 @@ jobs:
git config user.name "GitHub Actions [release-bot]"
git config user.email "github-actions@hirundo.io"
git pull origin ${{ github.event.pull_request.base.ref }}
git tag -a ${{ github.event.pull_request.title }} -m "${{ github.event.pull_request.body }}"

# Write PR body literally (no interpolation or command substitution)
cat > .tagmsg.txt <<-'EOF'
${{ github.event.pull_request.body }}
EOF

# Use PR title as the tag name; quote to handle spaces
git tag -a "${{ github.event.pull_request.title }}" -F .tagmsg.txt
Comment thread
benglewis marked this conversation as resolved.
git push origin ${{ github.event.pull_request.title }}
- name: Install dependencies & build package
run: |
Expand Down
4 changes: 2 additions & 2 deletions docs/_templates/github-pages-redirect.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<head>
<title>Redirecting to main branch docs</title>
<meta charset="utf-8" />
<meta http-equiv="refresh" content="0; url=./v0.1.18/index.html" />
<meta http-equiv="refresh" content="0; url=./v0.1.21/index.html" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self', frame-ancestors 'none'">
<link rel="canonical" href="https://hirundo-io.github.io/hirundo/v0.1.18/index.html" />
<link rel="canonical" href="https://hirundo-io.github.io/hirundo/v0.1.21/index.html" />
</head>
</html>
2 changes: 1 addition & 1 deletion hirundo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@
"load_from_zip",
]

__version__ = "0.1.18"
__version__ = "0.1.21"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages = ["hirundo"]

[project]
name = "hirundo"
version = "0.1.18"
version = "0.1.21"
description = "This package is used to interface with Hirundo's platform. It provides a simple API to optimize your ML datasets."
authors = [{ name = "Hirundo", email = "dev@hirundo.io" }]
readme = "README.md"
Expand Down
Loading