Skip to content

Commit

Permalink
fix pypgstac version update in stageversion script
Browse files Browse the repository at this point in the history
  • Loading branch information
hrodmn committed Feb 4, 2025
1 parent b55615c commit 280df1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/pypgstac/bin/stageversion
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cp migrations/pgstac.${VERSION}.sql pgstac.sql
# Update the version number in the appropriate places
[[ $VERSION == 'unreleased' ]] && PYVERSION="${OLDVERSION}-dev" || PYVERSION="$VERSION"
echo "Setting pypgstac version to $PYVERSION"
cat <<EOD > $PYPGSTACDIR/python/pypgstac/version.py
cat <<EOD > $PYPGSTACDIR/src/pypgstac/version.py
"""Version."""
__version__ = "${PYVERSION}"
EOD
Expand Down
2 changes: 1 addition & 1 deletion src/pypgstac/src/pypgstac/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version."""

__version__ = "0.9.2"
__version__ = "0.9.2-dev"

0 comments on commit 280df1e

Please sign in to comment.