diff --git a/CHANGELOG.md b/CHANGELOG.md index fee38e12c..847deec42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -303,7 +303,7 @@ - `ORDER BY` support for nullable sorting columns and qualified identifiers (Jussi Saurio) -- Fix `.schema` command crash in the CLI ([#212](https://github.com/penberg/limbo/issues/212) (Jussi Saurio) +- Fix `.schema` command crash in the CLI ([#212](https://github.com/tursodatabase/limbo/issues/212) (Jussi Saurio) ## 0.0.2 - 2024-07-24 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cad33a8db..ac4566c00 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -63,7 +63,7 @@ cargo bench --bench benchmark -- --profile-time=5 ## Finding things to work on -The issue tracker has issues tagged with [good first issue](https://github.com/penberg/limbo/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), +The issue tracker has issues tagged with [good first issue](https://github.com/tursodatabase/limbo/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), which are considered to be things to work on to get going. If you're interested in working on one of them, comment on the issue tracker, and we're happy to help you get going. ## Submitting your work diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index 3dd269b0e..4ed6066ce 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -40,8 +40,8 @@ dev = [ ] [project.urls] -Homepage = "https://github.com/penberg/limbo" -Source = "https://github.com/penberg/limbo" +Homepage = "https://github.com/tursodatabase/limbo" +Source = "https://github.com/tursodatabase/limbo" [tool.maturin] bindings = 'pyo3' diff --git a/bindings/wasm/package.json b/bindings/wasm/package.json index 2265a7799..d7c799bb9 100644 --- a/bindings/wasm/package.json +++ b/bindings/wasm/package.json @@ -7,7 +7,7 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/penberg/limbo" + "url": "https://github.com/tursodatabase/limbo" }, "type": "module", "main": "./node/dist/index.cjs", diff --git a/core/benches/benchmark.rs b/core/benches/benchmark.rs index 21b75424d..d2aef982b 100644 --- a/core/benches/benchmark.rs +++ b/core/benches/benchmark.rs @@ -12,7 +12,7 @@ fn rusqlite_open() -> rusqlite::Connection { } fn bench(criterion: &mut Criterion) { - // https://github.com/penberg/limbo/issues/174 + // https://github.com/tursodatabase/limbo/issues/174 // The rusqlite benchmark crashes on Mac M1 when using the flamegraph features let enable_rusqlite = std::env::var("DISABLE_RUSQLITE_BENCHMARK").is_err();