Skip to content

Commit 5d8ca97

Browse files
authored
Release 133 (#1393)
1 parent e976d22 commit 5d8ca97

File tree

3 files changed

+43
-15
lines changed

3 files changed

+43
-15
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zoo"
3-
version = "0.2.132"
3+
version = "0.2.133"
44
edition = "2021"
55
build = "build.rs"
66

@@ -37,15 +37,15 @@ image = { version = "0.25", default-features = false, features = [
3737
"jpeg",
3838
] }
3939
itertools = "0.12.1"
40-
kcl-lib = { version = "=0.2.110", features = ["disable-println"] }
41-
kcl-test-server = "=0.1.110"
40+
kcl-lib = { version = "=0.2.111", features = ["disable-println"] }
41+
kcl-test-server = "=0.1.111"
4242
kittycad = { version = "0.4.5", features = [
4343
"clap",
4444
"tabled",
4545
"requests",
4646
"retry",
4747
] }
48-
kittycad-modeling-cmds = { version = "=0.2.146", features = [
48+
kittycad-modeling-cmds = { version = "=0.2.147", features = [
4949
"websocket",
5050
"convert_client_crate",
5151
"tabled",

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ tag: ## Create a new git tag to prepare to build a release.
7373
git tag -sa v$(VERSION) -m "v$(VERSION)"
7474
@echo "Run git push origin v$(VERSION) to push your new tag to GitHub and trigger a release."
7575

76+
.PHONY: tag-no-sign
77+
tag-no-sign: ## Create a new git tag to prepare to build a release.
78+
git tag -a v$(VERSION) -m "v$(VERSION)"
79+
@echo "Run git push origin v$(VERSION) to push your new tag to GitHub and trigger a release."
80+
7681
.PHONY: AUTHORS
7782
AUTHORS:
7883
@$(file >$@,# This file lists all individuals having contributed content to the repository.)

0 commit comments

Comments
 (0)