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
2 changes: 1 addition & 1 deletion gel-babelfish/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ gel-stream = { path = "../gel-stream", version = "^0.4.5", features = ["server",
gel-auth = { path = "../gel-auth", version = "^0.1.7", features = ["postgres", "gel"] }
gel-pg-protocol = { path = "../gel-pg-protocol", version = "^0.1.2" }
gel-db-protocol = { path = "../gel-db-protocol", version = "0.2.0" }
gel-jwt = { path = "../gel-jwt", version = "0.1", features = ["keygen"] }
gel-jwt = { path = "../gel-jwt", version = "^0.1.4", features = ["keygen"] }

hyper = { version = "1.6.0", features = ["full"] }
hyper-util = { version = "0.1.13", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion gel-jwt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gel-jwt"
license = "MIT/Apache-2.0"
version = "0.1.3"
version = "0.1.4"
authors = ["MagicStack Inc. <hello@magic.io>"]
edition = "2021"
description = """
Expand Down
6 changes: 3 additions & 3 deletions tools/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ CRATE_ROOT=$(cd $(dirname $0)/.. && pwd)

cd $CRATE_ROOT

CRATE_ORDER=$(./tools/list.sh $CRATE)
CRATE_ORDER=$(sh ./tools/list.sh $CRATE)

# Check out a temporary worktree for this project from origin/master
git fetch origin master >> $LOG_FILE 2>&1
Expand Down Expand Up @@ -111,14 +111,14 @@ else
echo
echo "To fix, run the following command and then re-run this script:"
echo
echo "tools/bump.sh --patch ${NEEDS_BUMP[@]}"
echo "sh tools/bump.sh --patch ${NEEDS_BUMP[@]}"
echo
echo "Should I run this for you? (y/N)"
read -n 1 -s
if [ "$REPLY" = "y" ]; then
echo "Yes"
echo
exec ./tools/bump.sh --patch ${NEEDS_BUMP[@]}
exec sh ./tools/bump.sh --patch ${NEEDS_BUMP[@]}
fi
exit 1
fi
Expand Down
Loading