diff --git a/Cargo.toml b/Cargo.toml index f29e8f6a..eba28a94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/crates/squawk_ide/Cargo.toml b/crates/squawk_ide/Cargo.toml index f497624c..c6845e8b 100644 --- a/crates/squawk_ide/Cargo.toml +++ b/crates/squawk_ide/Cargo.toml @@ -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 diff --git a/crates/squawk_lexer/Cargo.toml b/crates/squawk_lexer/Cargo.toml index 350b53d1..b85d2a05 100644 --- a/crates/squawk_lexer/Cargo.toml +++ b/crates/squawk_lexer/Cargo.toml @@ -8,7 +8,7 @@ repository.workspace = true authors.workspace = true edition.workspace = true -license = "MIT" +license.workspace = true rust-version.workspace = true [lib] diff --git a/s/update-version b/s/update-version index dadd1301..63a6b2d2 100755 --- a/s/update-version +++ b/s/update-version @@ -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