Skip to content

Commit 831c7f7

Browse files
cargo publish was too big (#5699)
* cargo publish too big Signed-off-by: Jess Frazelle <[email protected]> * cargo publish too big Signed-off-by: Jess Frazelle <[email protected]> * updates Signed-off-by: Jess Frazelle <[email protected]> * updates Signed-off-by: Jess Frazelle <[email protected]> * updates Signed-off-by: Jess Frazelle <[email protected]> * bunmp again Signed-off-by: Jess Frazelle <[email protected]> * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) --------- Signed-off-by: Jess Frazelle <[email protected]> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent ec4ad26 commit 831c7f7

File tree

14 files changed

+29
-31
lines changed

14 files changed

+29
-31
lines changed

.github/workflows/kcl-python-bindings.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,11 @@ jobs:
159159
if: startsWith(github.ref, 'refs/tags/')
160160
needs: [linux-x86_64, windows, macos, sdist]
161161
steps:
162+
- uses: actions/checkout@v4
162163
- uses: actions/download-artifact@v4
163164
- name: Install the latest version of uv
164165
uses: astral-sh/setup-uv@v5
165-
- name: Install codespell
166+
- name: do uv things
166167
run: |
167168
cd rust/kcl-python-bindings
168169
uv venv .venv
-779 Bytes
Loading

e2e/playwright/snapshots/prompt-to-edit/prompt-to-edit-snapshot-tests-spec-ts--change-colour.snap.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
}
3030
}
3131
],
32-
"kcl_version": "0.2.46"
32+
"kcl_version": "0.2.47"
3333
}

rust/Cargo.lock

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

rust/kcl-bumper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "kcl-bumper"
4-
version = "0.1.46"
4+
version = "0.1.47"
55
edition = "2021"
66
repository = "https://github.com/KittyCAD/modeling-api"
77
rust-version = "1.76"

rust/kcl-derive-docs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kcl-derive-docs"
33
description = "A tool for generating documentation from Rust derive macros"
4-
version = "0.1.46"
4+
version = "0.1.47"
55
edition = "2021"
66
license = "MIT"
77
repository = "https://github.com/KittyCAD/modeling-app"

rust/kcl-language-server-release/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-language-server-release"
3-
version = "0.1.46"
3+
version = "0.1.47"
44
edition = "2021"
55
authors = ["KittyCAD Inc <[email protected]>"]
66
publish = false

rust/kcl-language-server-release/src/build.rs

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@ pub struct Build {
2222

2323
impl Build {
2424
pub(crate) fn run(&self, sh: &Shell) -> Result<()> {
25-
let stable = sh
26-
.var("GITHUB_REF")
27-
.unwrap_or_default()
28-
.as_str()
29-
.contains("refs/tags/v");
25+
let stable = sh.var("GITHUB_REF").unwrap_or_default().as_str().contains("refs/tags");
3026

3127
let project_root = crate::project_root();
3228
let target = Target::get(&project_root);
@@ -50,7 +46,7 @@ impl Build {
5046
}
5147

5248
let release_tag = if stable {
53-
// We already checked above if the env var contains "refs/tags/v".
49+
// We already checked above if the env var contains "refs/tags".
5450
// So this is safe to unwrap.
5551
sh.var("GITHUB_REF")
5652
.unwrap_or_default()
@@ -62,10 +58,10 @@ impl Build {
6258

6359
if stable && !release_tag.contains(&version) {
6460
// bail early if the tag doesn't match the version
65-
anyhow::bail!(
61+
// TODO: error here when we use the tags with kcl
62+
println!(
6663
"Tag {} doesn't match version {}. Did you forget to update Cargo.toml?",
67-
release_tag,
68-
version
64+
release_tag, version
6965
);
7066
}
7167

rust/kcl-language-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "kcl-language-server"
33
description = "A language server for KCL."
44
authors = ["KittyCAD Inc <[email protected]>"]
5-
version = "0.2.46"
5+
version = "0.2.47"
66
edition = "2021"
77
license = "MIT"
88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

rust/kcl-lib/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
[package]
22
name = "kcl-lib"
33
description = "KittyCAD Language implementation and tools"
4-
version = "0.2.46"
4+
version = "0.2.47"
55
edition = "2021"
66
license = "MIT"
77
repository = "https://github.com/KittyCAD/modeling-app"
88
rust-version = "1.83"
99
authors = ["Jess Frazelle", "Adam Chalmers", "KittyCAD, Inc"]
1010
keywords = ["kcl", "KittyCAD", "CAD"]
11+
exclude = ["tests/*", "benches/*", "examples/*", "e2e/*", "bindings/*", "fuzz/*"]
1112
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1213

1314
[dependencies]
1415
anyhow = { workspace = true, features = ["backtrace"] }
1516
async-recursion = "1.1.1"
16-
async-trait = {workspace = true}
17+
async-trait = { workspace = true }
1718
base64 = "0.22.1"
1819
chrono = "0.4.38"
1920
clap = { version = "4.5.27", default-features = false, optional = true, features = [
2021
"std",
2122
"derive",
2223
] }
2324
convert_case = "0.8.0"
24-
dashmap = {workspace = true}
25+
dashmap = { workspace = true }
2526
dhat = { version = "0.3", optional = true }
2627
fnv = "1.0.7"
2728
form_urlencoded = "1.2.1"

0 commit comments

Comments
 (0)