Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ snapbox = { version = "0.6.0", features = ["diff", "term-svg", "cmd"] }

# local
# we have to make the versions explicit otherwise `cargo publish` won't work
squawk-github = { path = "./crates/squawk_github", version = "2.27.0" }
squawk-ide = { path = "./crates/squawk_ide", version = "2.27.0" }
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.27.0" }
squawk-parser = { path = "./crates/squawk_parser", version = "2.27.0" }
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.27.0" }
squawk-linter = { path = "./crates/squawk_linter", version = "2.27.0" }
squawk-server = { path = "./crates/squawk_server", version = "2.27.0" }
squawk-github = { path = "./crates/squawk_github", version = "2.28.1" }
squawk-ide = { path = "./crates/squawk_ide", version = "2.28.1" }
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.28.1" }
squawk-parser = { path = "./crates/squawk_parser", version = "2.28.1" }
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.28.1" }
squawk-linter = { path = "./crates/squawk_linter", version = "2.28.1" }
squawk-server = { path = "./crates/squawk_server", version = "2.28.1" }

[workspace.lints.clippy]
collapsible_else_if = "allow"
Expand Down
9 changes: 7 additions & 2 deletions crates/squawk_ide/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
[package]
name = "squawk-ide"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description.workspace = true
documentation.workspace = true
homepage.workspace = true
repository.workspace = true

authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true

[dependencies]
squawk-syntax.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/squawk_lexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository.workspace = true

authors.workspace = true
edition.workspace = true
license = "MIT"
license.workspace = true
rust-version.workspace = true

[lib]
Expand Down
2 changes: 1 addition & 1 deletion s/update-version
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ main() {
git checkout -b "release-$NEW_VERSION"
echo "updating version to '$NEW_VERSION'..."
fastmod --accept-all '^version = ".*"' 'version = "'$NEW_VERSION'"' Cargo.toml
fastmod --accept-all '(squawk_[a-z_]+ = \{ path = "[^"]+", )version = "[^"]+"' '${1}version = "'$NEW_VERSION'"' Cargo.toml
fastmod --accept-all '(squawk-[a-z_]+ = \{ path = "[^"]+", )version = "[^"]+"' '${1}version = "'$NEW_VERSION'"' Cargo.toml
fastmod --accept-all -m '(name = "squawk"\n)version = ".*?"' '${1}version = "'$NEW_VERSION'"' Cargo.lock
fastmod --accept-all '"version": ".*"' '"version": "'$NEW_VERSION'"' package.json
fastmod --accept-all '"version": ".*"' '"version": "'$NEW_VERSION'"' squawk-vscode/package.json
Expand Down
Loading