Skip to content

Commit d53bdff

Browse files
authored
chore: update links (#142)
1 parent 1ed8bff commit d53bdff

File tree

8 files changed

+49
-49
lines changed

8 files changed

+49
-49
lines changed

CHANGELOG.md

+33-33
Large diffs are not rendered by default.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 tami5
3+
Copyright (c) 2021 kkharji
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ sqlite.lua 💫
55
[SQLite]/[LuaJIT] binding and a highly opinionated wrapper for storing, retrieving, caching, and persisting [SQLite] databases.
66
[sqlite.lua] present new possibilities for plugin development and while it's primarily created for [neovim], it support all luajit environments.
77

8-
- [Changelog](https://github.com/tami5/sqlite.lua/blob/master/CHANGELOG.md)
9-
- [Docs](https://github.com/tami5/sqlite.lua/blob/master/doc/sqlite.txt)
10-
- [Examples](https://github.com/tami5/sqlite.lua/blob/master/lua/sqlite/examples)
11-
- [Powered By sqlite.lua](https://github.com/tami5/sqlite.lua#-powered-by-sqlitelua)
8+
- [Changelog](https://github.com/kkharji/sqlite.lua/blob/master/CHANGELOG.md)
9+
- [Docs](https://github.com/kkharji/sqlite.lua/blob/master/doc/sqlite.txt)
10+
- [Examples](https://github.com/kkharji/sqlite.lua/blob/master/lua/sqlite/examples)
11+
- [Powered By sqlite.lua](https://github.com/kkharji/sqlite.lua#-powered-by-sqlitelua)
1212

1313
<p align="center"> <img src="./doc/preview.svg"> </p>
1414

@@ -29,7 +29,7 @@ sqlite.lua 💫
2929
### [Packer.nvim](https://github.com/wbthomason/packer.nvim) (Neovim)
3030

3131
```lua
32-
use { "tami5/sqlite.lua" }
32+
use { "kkharji/sqlite.lua" }
3333
```
3434

3535
### [luarocks](https://luarocks.org/) (LuaJIT)
@@ -67,14 +67,14 @@ programs.neovim.plugins = [
6767
🔥 Powered by sqlite.lua
6868
-----------------
6969

70-
- https://github.com/tami5/impatient.nvim
70+
- https://github.com/kkharji/impatient.nvim
7171
- https://github.com/nvim-telescope/telescope-smart-history.nvim
7272
- https://github.com/nvim-telescope/telescope-frecency.nvim
73-
- https://github.com/tami5/lispdocs.nvim
73+
- https://github.com/kkharji/lispdocs.nvim
7474
- https://github.com/nvim-telescope/telescope-cheat.nvim
7575

7676
[Installation]: #🚧_installation
7777
[SQLite]: https://www.sqlite.org/index.html
7878
[LuaJIT]: https://luajit.org
79-
[sqlite.lua]: https://github.com/tami5/sqlite.lua
79+
[sqlite.lua]: https://github.com/kkharji/sqlite.lua
8080
[neovim]: https://github.com/neovim/neovim

doc/sqlite.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
SQLite/LuaJIT binding and highly opinionated wrapper for storing, retrieving,
55
caching, persisting, querying, and connecting to SQLite databases.
66

7-
To find out more visit https://github.com/tami5/sqlite.lua
7+
To find out more visit https://github.com/kkharji/sqlite.lua
88

99
Help usage in neovim: ignore ||
1010
:h |sqlite.readme| | open help readme

lua/sqlite/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
---retrieving, caching, persisting, querying, and connecting to SQLite databases.
44
---
55
--- To find out more
6-
--- visit https://github.com/tami5/sqlite.lua
6+
--- visit https://github.com/kkharji/sqlite.lua
77
---<pre>
88
---
99
--- Help usage in neovim: ignore ||

scripts/gen_rockspec.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ local version = uv.os_getenv "GTAG" or "master"
1111
local modules = {}
1212
local description = {
1313
summary = "SQLite/LuaJIT binding and a highly opinionated wrapper for storing, retrieving, caching, and persisting [SQLite] databases",
14-
homepage = "https://github.com/tami5/sqlite.lua",
14+
homepage = "https://github.com/kkharji/sqlite.lua",
1515
labels = { "sqlite3", "binding", "luajit", "database" },
1616
detailed = "",
1717
license = "MIT",
@@ -40,7 +40,7 @@ package = 'sqlite'
4040
version = '%s-0'
4141
description = %s
4242
source = {
43-
url = 'git://github.com/tami5/sqlite.lua.git',
43+
url = 'git://github.com/kkharji/sqlite.lua.git',
4444
tag = "%s"
4545
}
4646
dependencies = {

sqlite-master-0.rockspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ package = 'sqlite'
33
version = 'master-0'
44
description = {
55
detailed = "",
6-
homepage = "https://github.com/tami5/sqlite.lua",
6+
homepage = "https://github.com/kkharji/sqlite.lua",
77
labels = { "sqlite3", "binding", "luajit", "database" },
88
license = "MIT",
99
summary = "SQLite/LuaJIT binding and a highly opinionated wrapper for storing, retrieving, caching, and persisting [SQLite] databases"
1010
}
1111
source = {
12-
url = 'git://github.com/tami5/sqlite.lua.git',
12+
url = 'git://github.com/kkharji/sqlite.lua.git',
1313
tag = "master"
1414
}
1515
dependencies = {

test/auto/db_spec.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe("sqlite.db", function()
6868
end)
6969
end)
7070

71-
describe(":open/:close", function() -- todo(tami5): change to open instead of connect.
71+
describe(":open/:close", function() -- todo(kkharji): change to open instead of connect.
7272
it("creates in memory database.", function()
7373
local db = sql:open()
7474
eq("table", type(db), "returns new main interface object.")

0 commit comments

Comments
 (0)