zed-editor: 0.154.3 -> 0.154.4

This commit is contained in:
Bruno Bigras 2024-10-01 12:39:49 -04:00 committed by Gaétan Lepage
parent 76864916cb
commit b461e407bd
2 changed files with 7 additions and 9 deletions

View File

@ -14375,7 +14375,7 @@ dependencies = [
[[package]]
name = "zed"
version = "0.154.3"
version = "0.154.4"
dependencies = [
"activity_indicator",
"anyhow",

View File

@ -27,7 +27,7 @@
makeFontsConf,
vulkan-loader,
envsubst,
nix-update-script,
gitUpdater,
cargo-about,
testers,
zed-editor,
@ -86,13 +86,13 @@ let
in
rustPlatform.buildRustPackage rec {
pname = "zed-editor";
version = "0.154.3";
version = "0.154.4";
src = fetchFromGitHub {
owner = "zed-industries";
repo = "zed";
rev = "refs/tags/v${version}";
hash = "sha256-6W4YKtYeLUv1N51YJonb7I2BO4zEESgI8vmMhJVoLDI=";
hash = "sha256-/sL5SVRNVJBMPPZek9zBiek3nXHI1czNwbkGtlk9CzU=";
fetchSubmodules = true;
};
@ -244,11 +244,9 @@ rustPlatform.buildRustPackage rec {
'';
passthru = {
updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"v(.*)"
];
updateScript = gitUpdater {
rev-prefix = "v";
ignoredVersions = "pre";
};
tests.version = testers.testVersion {
inherit version;