Skip to content

Commit 67067ea

Browse files
committed
chore: bump v0.0.10
1 parent 1a17b0d commit 67067ea

2 files changed

Lines changed: 14 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ iex> dump(Bookstore.BooksListResult.schematic(), %Bookstore.BooksListResult{
202202
```elixir
203203
def deps do
204204
[
205-
{:schematic, "~> 0.0.9"}
205+
{:schematic, "~> 0.0.10"}
206206
]
207207
end
208208
```

mix.exs

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ defmodule Schematic.MixProject do
66
app: :schematic,
77
description: "Data validation and transformation",
88
package: package(),
9-
version: "0.0.9",
9+
version: "0.0.10",
1010
elixir: "~> 1.10",
1111
elixirc_paths: elixirc_paths(Mix.env()),
1212
start_permanent: Mix.env() == :prod,
1313
source_url: "https://github.com/mhanberg/schematic",
14-
deps: deps()
14+
deps: deps(),
15+
docs: docs()
1516
]
1617
end
1718

@@ -28,7 +29,10 @@ defmodule Schematic.MixProject do
2829
[
2930
maintainers: ["Mitchell Hanberg"],
3031
licenses: ["MIT"],
31-
links: %{github: "https://github.com/mhanberg/schematic"},
32+
links: %{
33+
GitHub: "https://github.com/mhanberg/schematic",
34+
Sponsor: "https://github.com/sponsors/mhanberg"
35+
},
3236
files: ~w(lib CHANGELOG.md LICENSE mix.exs README.md .formatter.exs)
3337
]
3438
end
@@ -38,4 +42,10 @@ defmodule Schematic.MixProject do
3842
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
3943
]
4044
end
45+
46+
defp docs() do
47+
[
48+
main: "Schematic"
49+
]
50+
end
4151
end

0 commit comments

Comments
 (0)