Skip to content

Commit d85c100

Browse files
committed
Remove old repository references
1 parent 92e52db commit d85c100

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

CHANGELOG

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ The format is based on [Keep a Changelog][keepachangelog], and this project
66
adheres to [Semantic Versioning][semver].
77

88
## [Unreleased]
9-
- bumped SQLite3 amalgamation to version 3.35.2
9+
10+
## [0.5.1] - 2021-03-19
11+
12+
### Changed
13+
- Bumped SQLite3 amalgamation to version 3.35.2
14+
- Replaced old references to http://github.com/warmwaffles
1015

1116
## [0.5.0] - 2021-03-17
1217

@@ -15,4 +20,4 @@ adheres to [Semantic Versioning][semver].
1520

1621
[keepachangelog]: <https://keepachangelog.com/en/1.0.0/>
1722
[semver]: <https://semver.org/spec/v2.0.0.html>
18-
[ecto_sqlite3]: <https://github.com/kevinlang/ecto_sqlite3>
23+
[ecto_sqlite3]: <https://github.com/elixir-sqlite/ecto_sqlite3>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Package: https://hex.pm/packages/exqlite
3131

3232
```elixir
3333
defp deps do
34-
{:exqlite, "~> 0.5.0"}
34+
{:exqlite, "~> 0.5.1"}
3535
end
3636
```
3737

@@ -89,4 +89,4 @@ complicated and error prone.
8989

9090
Feel free to check the project out and submit pull requests.
9191

92-
[ecto_sqlite3]: <https://github.com/kevinlang/ecto_sqlite3>
92+
[ecto_sqlite3]: <https://github.com/elixir-sqlite/ecto_sqlite3>

mix.exs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ defmodule Exqlite.MixProject do
44
def project do
55
[
66
app: :exqlite,
7-
version: "0.5.0",
7+
version: "0.5.1",
88
elixir: "~> 1.8",
99
compilers: [:elixir_make] ++ Mix.compilers(),
1010
make_targets: ["all"],
1111
make_clean: ["clean"],
1212
start_permanent: Mix.env() == :prod,
13-
source_url: "https://github.com/warmwaffles/exqlite",
14-
homepage_url: "https://github.com/warmwaffles/exqlite",
13+
source_url: "https://github.com/elixir-sqlite/exqlite",
14+
homepage_url: "https://github.com/elixir-sqlite/exqlite",
1515
deps: deps(),
1616
package: package(),
1717
description: description(),
@@ -57,7 +57,7 @@ defmodule Exqlite.MixProject do
5757
name: "exqlite",
5858
licenses: ["MIT"],
5959
links: %{
60-
"GitHub" => "https://github.com/warmwaffles/exqlite",
60+
"GitHub" => "https://github.com/elixir-sqlite/exqlite",
6161
"docs" => "https://hexdocs.pm/exqlite"
6262
}
6363
]

0 commit comments

Comments
 (0)