Bump version to 1.5.5
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
83f4ebff37
commit
6792039df4
Generated
+1
-5
@@ -5191,11 +5191,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "galaxy"
|
name = "galaxy"
|
||||||
<<<<<<< HEAD
|
version = "1.5.5"
|
||||||
version = "1.5.3"
|
|
||||||
=======
|
|
||||||
version = "1.5.4"
|
|
||||||
>>>>>>> master
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"addr",
|
"addr",
|
||||||
"aho-corasick",
|
"aho-corasick",
|
||||||
|
|||||||
+1
-1
@@ -5,7 +5,7 @@ description = "Galaxy - AI-powered terminal"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
autobins = false
|
autobins = false
|
||||||
name = "galaxy"
|
name = "galaxy"
|
||||||
version = "1.5.4"
|
version = "1.5.5"
|
||||||
publish.workspace = true
|
publish.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
|
|||||||
@@ -80,7 +80,8 @@ fi
|
|||||||
# ---------- 4. Clone the repo ----------
|
# ---------- 4. Clone the repo ----------
|
||||||
if [[ -d "$CLONE_DIR/.git" ]]; then
|
if [[ -d "$CLONE_DIR/.git" ]]; then
|
||||||
info "Repository already exists at $CLONE_DIR — pulling latest..."
|
info "Repository already exists at $CLONE_DIR — pulling latest..."
|
||||||
git -C "$CLONE_DIR" pull --ff-only || warn "Pull failed; building with current checkout."
|
git -C "$CLONE_DIR" fetch origin
|
||||||
|
git -C "$CLONE_DIR" reset --hard origin/master
|
||||||
else
|
else
|
||||||
info "Cloning Galaxy into $CLONE_DIR..."
|
info "Cloning Galaxy into $CLONE_DIR..."
|
||||||
mkdir -p "$(dirname "$CLONE_DIR")"
|
mkdir -p "$(dirname "$CLONE_DIR")"
|
||||||
@@ -88,11 +89,8 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# ---------- 5. Build ----------
|
# ---------- 5. Build ----------
|
||||||
info "Building $BUNDLE_BIN (release)..."
|
info "Building and bundling $APP_NAME (release)..."
|
||||||
pushd "$CLONE_DIR" > /dev/null
|
pushd "$CLONE_DIR" > /dev/null
|
||||||
cargo build --release --bin "$BUNDLE_BIN" --package "$BUNDLE_PKG"
|
|
||||||
|
|
||||||
info "Bundling $APP_NAME..."
|
|
||||||
cargo bundle --release --bin "$BUNDLE_BIN" --package "$BUNDLE_PKG"
|
cargo bundle --release --bin "$BUNDLE_BIN" --package "$BUNDLE_PKG"
|
||||||
popd > /dev/null
|
popd > /dev/null
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user