Skip to content

Commit 45b450d

Browse files
committed
fix: Update quadlet-lsp to 0.5.0
1 parent 16962f1 commit 45b450d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

examples/postgres.container

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Example Podman Quadlet container file
22
# This file defines a PostgreSQL container that can be managed by systemd
3+
# This is NOT intended to work and probably doesn't.
34

45
[Unit]
56
Description=PostgreSQL Database Container
@@ -21,6 +22,8 @@ PublishPort=5432:5432
2122

2223
# Volume mounting
2324
Volume=postgres-data:/var/lib/postgresql/data:Z
25+
# This should be a working mount
26+
Volume=%h/correct:/correct
2427

2528
# Security settings
2629
User=postgres
@@ -41,6 +44,7 @@ Pull=newer
4144
Label="app=postgres"
4245
Label="version=15"
4346
Label="environment=development"
47+
Label="valid-label=test"
4448

4549
[Install]
4650
# Start automatically with the system

extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
id = "quadlet"
22
name = "Quadlet"
33
description = "Support for Podman Quadlet files with quadlet-lsp"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
schema_version = 1
66
authors = ["Mufeed Ali <[email protected]>"]
77
repository = "https://github.com/mufeedali/zed-podman"

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ impl QuadletExtension {
6565
}
6666
};
6767

68-
let version = "v0.4.0";
68+
let version = "0.5.0";
6969
let download_url = format!(
70-
"https://github.com/onlyati/quadlet-lsp/releases/download/{}/quadlet-lsp-{}-{}-{}.{}",
70+
"https://github.com/onlyati/quadlet-lsp/releases/download/v{}/quadlet-lsp-{}-{}-{}.{}",
7171
version, version, os, arch, download_format
7272
);
7373

0 commit comments

Comments
 (0)