Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Bolin
72a4c38e41 Release 0.0.2504301219 2025-04-30 12:19:51 -07:00
Michael Bolin
4ae8f2ba46 chore: script to create a Rust release 2025-04-30 12:16:04 -07:00
3 changed files with 29 additions and 3 deletions

4
codex-rs/Cargo.lock generated
View File

@@ -469,7 +469,7 @@ dependencies = [
[[package]]
name = "codex-cli"
version = "0.0.2504301132"
version = "0.0.0"
dependencies = [
"anyhow",
"clap",
@@ -523,7 +523,7 @@ dependencies = [
[[package]]
name = "codex-exec"
version = "0.0.2504301132"
version = "0.0.0"
dependencies = [
"anyhow",
"chrono",

View File

@@ -11,7 +11,7 @@ members = [
]
[workspace.package]
version = "0.0.2504301132"
version = "0.0.2504301219"
[profile.release]
lto = "fat"

View File

@@ -0,0 +1,26 @@
#!/bin/bash
set -euo pipefail
# Change to the root of the Cargo workspace.
cd "$(dirname "${BASH_SOURCE[0]}")/.."
# Cancel if there are uncommitted changes.
if ! git diff --quiet || ! git diff --cached --quiet || [ -n "$(git ls-files --others --exclude-standard)" ]; then
echo "ERROR: You have uncommitted or untracked changes." >&2
exit 1
fi
# Fail if in a detached HEAD state.
CURRENT_BRANCH=$(git symbolic-ref --short -q HEAD)
# Create a new branch for the release and make a commit with the new version.
VERSION=$(printf '0.0.%d' "$(date +%y%m%d%H%M)")
TAG="rust-v$VERSION"
git checkout -b "$TAG"
perl -i -pe "s/^version = \".*\"/version = \"$VERSION\"/" Cargo.toml
git add Cargo.toml
git commit -m "Release $VERSION"
git tag -a "$TAG" -m "Release $VERSION"
git push origin "refs/tags/$TAG"
git checkout "$CURRENT_BRANCH"