Skip to content

Commit 14e0db1

Browse files
committed
fix(docs): repo name
1 parent 48e4afb commit 14e0db1

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2024"
99
homepage = "https://supabase.com/"
1010
keywords = ["linter", "typechecker", "postgres", "language-server"]
1111
license = "MIT"
12-
repository = "https://github.com/supabase-community/postgres_lsp"
12+
repository = "https://github.com/supabase-community/postgres-language-server"
1313
rust-version = "1.85.0"
1414

1515
[workspace.dependencies]

docs/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A collection of language tools and a Language Server Protocol (LSP) implementati
66

77
---
88

9-
**Source Code**: <a href="https://github.com/supabase-community/postgres_lsp" target="_blank">https://github.com/supabase-community/postgres_lsp</a>
9+
**Source Code**: <a href="https://github.com/supabase-community/postgres-language-server" target="_blank">https://github.com/supabase-community/postgres-language-server</a>
1010

1111
---
1212

@@ -25,10 +25,10 @@ Our current focus is on refining and enhancing these core features while buildin
2525

2626
## Installation
2727

28-
To install Postgres Tools, grab the executable for your platform from the [latest CLI release](https://github.com/supabase-community/postgres_lsp/releases/latest) on GitHub and give it execution permission.
28+
To install Postgres Tools, grab the executable for your platform from the [latest CLI release](https://github.com/supabase-community/postgres-language-server/releases/latest) on GitHub and give it execution permission.
2929

3030
```sh
31-
curl -L https://github.com/supabase-community/postgres_lsp/releases/download/<version>/postgrestools_aarch64-apple-darwin -o postgrestools
31+
curl -L https://github.com/supabase-community/postgres-language-server/releases/download/<version>/postgrestools_aarch64-apple-darwin -o postgrestools
3232
chmod +x postgrestools
3333
```
3434

packages/@postgrestools/backend-jsonrpc/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"files": ["dist/", "README.md"],
1111
"repository": {
1212
"type": "git",
13-
"url": "git+https://github.com/supabase-community/postgres_lsp.git",
13+
"url": "git+https://github.com/supabase-community/postgres-language-server.git",
1414
"directory": "packages/@postgrestools/backend-jsonrpc"
1515
},
1616
"author": "Supabase Community",
17-
"bugs": "ttps://github.com/supabase-community/postgres_lsp/issues",
17+
"bugs": "ttps://github.com/supabase-community/postgres-language-server/issues",
1818
"description": "Bindings to the JSON-RPC Workspace API of the Postgres Language Tools daemon",
1919
"keywords": ["TypeScript", "Postgres"],
2020
"license": "MIT",

packages/@postgrestools/postgrestools/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"repository": {
88
"type": "git",
9-
"url": "git+https://github.com/supabase-community/postgres_lsp.git",
9+
"url": "git+https://github.com/supabase-community/postgres-language-server.git",
1010
"directory": "packages/@postgrestools/postgrestools"
1111
},
1212
"author": "Supabase Community",

packages/@postgrestools/postgrestools/scripts/generate-packages.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const MANIFEST_PATH = resolve(CLI_ROOT, "package.json");
1818
const SUPPORTED_ARCHITECTURES = ["x86_64", "aarch64"];
1919

2020
async function downloadSchema(releaseTag, githubToken) {
21-
const assetUrl = `https://github.com/supabase-community/postgres_lsp/releases/download/${releaseTag}/schema.json`;
21+
const assetUrl = `https://github.com/supabase-community/postgres-language-server/releases/download/${releaseTag}/schema.json`;
2222

2323
const response = await fetch(assetUrl.trim(), {
2424
headers: {
@@ -44,7 +44,7 @@ async function downloadSchema(releaseTag, githubToken) {
4444
async function downloadBinary(platform, arch, os, releaseTag, githubToken) {
4545
const buildName = getBuildName(platform, arch);
4646

47-
const assetUrl = `https://github.com/supabase-community/postgres_lsp/releases/download/${releaseTag}/${buildName}`;
47+
const assetUrl = `https://github.com/supabase-community/postgres-language-server/releases/download/${releaseTag}/${buildName}`;
4848

4949
const response = await fetch(assetUrl.trim(), {
5050
headers: {

0 commit comments

Comments
 (0)