Skip to content

Commit bf8f6c8

Browse files
committed
rename: opencli-rs → autocli
1 parent 49cd19d commit bf8f6c8

86 files changed

Lines changed: 674 additions & 983 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

0 Bytes
Binary file not shown.

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,20 @@ jobs:
6464
if: matrix.archive == 'tar.gz'
6565
run: |
6666
cd target/${{ matrix.target }}/release
67-
tar czf ../../../opencli-rs-${{ matrix.target }}.tar.gz opencli-rs
67+
tar czf ../../../autocli-${{ matrix.target }}.tar.gz autocli
6868
cd ../../..
6969
7070
- name: Package (Windows)
7171
if: matrix.archive == 'zip'
7272
shell: pwsh
7373
run: |
74-
Compress-Archive -Path target/${{ matrix.target }}/release/opencli-rs.exe -DestinationPath opencli-rs-${{ matrix.target }}.zip
74+
Compress-Archive -Path target/${{ matrix.target }}/release/autocli.exe -DestinationPath autocli-${{ matrix.target }}.zip
7575
7676
- name: Upload artifact
7777
uses: actions/upload-artifact@v4
7878
with:
79-
name: opencli-rs-${{ matrix.target }}
80-
path: opencli-rs-${{ matrix.target }}.${{ matrix.archive }}
79+
name: autocli-${{ matrix.target }}
80+
path: autocli-${{ matrix.target }}.${{ matrix.archive }}
8181

8282
extension:
8383
name: Build Chrome Extension
@@ -101,13 +101,13 @@ jobs:
101101
- name: Package extension
102102
run: |
103103
cd extension
104-
zip -r ../opencli-rs-chrome-extension.zip dist/ icons/ manifest.json
104+
zip -r ../autocli-chrome-extension.zip dist/ icons/ manifest.json
105105
106106
- name: Upload artifact
107107
uses: actions/upload-artifact@v4
108108
with:
109-
name: opencli-rs-chrome-extension
110-
path: opencli-rs-chrome-extension.zip
109+
name: autocli-chrome-extension
110+
path: autocli-chrome-extension.zip
111111

112112
release:
113113
name: Create Release
@@ -136,7 +136,7 @@ jobs:
136136
with:
137137
generate_release_notes: true
138138
files: |
139-
artifacts/opencli-rs-*.tar.gz
140-
artifacts/opencli-rs-*.zip
141-
artifacts/opencli-rs-chrome-extension.zip
139+
artifacts/autocli-*.tar.gz
140+
artifacts/autocli-*.zip
141+
artifacts/autocli-chrome-extension.zip
142142
artifacts/SHA256SUMS.txt

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[workspace]
22
resolver = "2"
33
members = [
4-
"crates/opencli-rs-core",
5-
"crates/opencli-rs-pipeline",
6-
"crates/opencli-rs-browser",
7-
"crates/opencli-rs-output",
8-
"crates/opencli-rs-discovery",
9-
"crates/opencli-rs-external",
10-
"crates/opencli-rs-ai",
11-
"crates/opencli-rs-cli",
4+
"crates/autocli-core",
5+
"crates/autocli-pipeline",
6+
"crates/autocli-browser",
7+
"crates/autocli-output",
8+
"crates/autocli-discovery",
9+
"crates/autocli-external",
10+
"crates/autocli-ai",
11+
"crates/autocli-cli",
1212
]
1313

1414
[workspace.package]
15-
version = "0.2.3"
15+
version = "0.2.4"
1616
edition = "2021"
1717
license = "Apache-2.0"
1818

0 commit comments

Comments
 (0)