Skip to content

Commit fc55e38

Browse files
committed
chore(release): bump to 0.1.1 and skip apple builds
1 parent 91f95e5 commit fc55e38

16 files changed

Lines changed: 17 additions & 44 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ jobs:
2525
- runner: ubuntu-latest
2626
rust_target: x86_64-unknown-linux-gnu
2727
binary_name: jucode
28-
- runner: macos-13
29-
rust_target: x86_64-apple-darwin
30-
binary_name: jucode
31-
- runner: macos-14
32-
rust_target: aarch64-apple-darwin
33-
binary_name: jucode
3428

3529
steps:
3630
- uses: actions/checkout@v4
@@ -114,8 +108,6 @@ jobs:
114108
- name: Publish npm packages
115109
if: ${{ env.NODE_AUTH_TOKEN != '' }}
116110
run: |
117-
npm publish ./npm/cli-darwin-arm64 --access public
118-
npm publish ./npm/cli-darwin-x64 --access public
119111
npm publish ./npm/cli-linux-x64 --access public
120112
npm publish ./npm/cli-win32-x64 --access public
121113
npm publish ./npm/cli --access public

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jucode-cli"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[[bin]]

crates/agent-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jucode-agent-core"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[dependencies]

crates/tui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jucode-tui"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[dependencies]

crates/tui/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2268,13 +2268,13 @@ mod tests {
22682268
fn startup_renders_inside_box() {
22692269
let document = UiBuilder::new()
22702270
.chat(&[ChatLine::Startup {
2271-
version: "0.1.0".to_string(),
2271+
version: "0.1.1".to_string(),
22722272
profile_dir: "C:\\Users\\me\\.jucode".to_string(),
22732273
}])
22742274
.finish();
22752275

22762276
assert!(document.history[0].text.starts_with('+'));
2277-
assert!(document.history[1].text.contains("JUCODE CLI v0.1.0"));
2277+
assert!(document.history[1].text.contains("JUCODE CLI v0.1.1"));
22782278
assert!(document.history[2]
22792279
.text
22802280
.contains("profile C:\\Users\\me\\.jucode"));

docs/releasing.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ JuCode CLI follows the same distribution shape as Codex CLI:
1111
- `npm/cli`: meta package with the `jucode` launcher.
1212
- `npm/cli-win32-x64`: Windows x64 native binary.
1313
- `npm/cli-linux-x64`: Linux x64 native binary.
14-
- `npm/cli-darwin-x64`: macOS Intel native binary.
15-
- `npm/cli-darwin-arm64`: macOS Apple Silicon native binary.
1614

1715
## One-time setup
1816

@@ -24,7 +22,7 @@ JuCode CLI follows the same distribution shape as Codex CLI:
2422

2523
1. Bump the version in `Cargo.toml`.
2624
2. Trigger the release workflow with `release_version=X.Y.Z`, or create and push a git tag in the form `vX.Y.Z`.
27-
3. GitHub Actions builds all native binaries, packs the npm packages, creates the GitHub Release, and publishes to npm when `NPM_TOKEN` is present.
25+
3. GitHub Actions builds the Windows and Linux native binaries, packs the npm packages, creates the GitHub Release, and publishes to npm when `NPM_TOKEN` is present.
2826

2927
## Local verification
3028

npm/cli-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jucode/cli-darwin-arm64",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "JuCode native CLI for macOS arm64",
55
"license": "MIT",
66
"publishConfig": {

npm/cli-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jucode/cli-darwin-x64",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "JuCode native CLI for macOS x64",
55
"license": "MIT",
66
"publishConfig": {

npm/cli-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jucode/cli-linux-x64",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "JuCode native CLI for Linux x64",
55
"license": "MIT",
66
"publishConfig": {

0 commit comments

Comments
 (0)