Skip to content

Commit e5ddc2e

Browse files
release version 1.0.0
1 parent 4e536ca commit e5ddc2e

4 files changed

Lines changed: 24 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog
22

3-
## 0.1.0
3+
## 1.0.0
44

55
- Initial release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ by adding `oled_virtual` to your list of dependencies in `mix.exs`:
1717
```elixir
1818
def deps do
1919
[
20-
{:oled_virtual, "~> 0.1.0"}
20+
{:oled_virtual, "~> 1.0"}
2121
]
2222
end
2323
```

guides/multidisplay-and-nerves.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ end
4141
defp deps do
4242
[
4343
...
44-
{:oled_virtual, "~> 0.1.0"}
44+
{:oled_virtual, "~> 1.0"}
4545
]
4646
end
4747
```

mix.exs

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
defmodule OLEDVirtual.MixProject do
22
use Mix.Project
33

4-
@version "0.1.0"
4+
@version "1.0.0"
55

66
def project do
77
[
88
app: :oled_virtual,
99
version: @version,
10+
name: "OLEDVirtual",
1011
elixir: "~> 1.11",
1112
elixirc_paths: elixirc_paths(Mix.env()),
1213
start_permanent: Mix.env() == :prod,
1314
deps: deps(),
15+
description: description(),
1416
docs: docs(),
15-
source_url: "https://github.com/pappersverk/oled_virtual"
17+
package: package(),
18+
source_url: "https://github.com/pappersverk/oled_virtual",
19+
homepage_url: "https://github.com/pappersverk/oled_virtual"
1620
]
1721
end
1822

@@ -23,6 +27,12 @@ defmodule OLEDVirtual.MixProject do
2327
]
2428
end
2529

30+
defp description do
31+
"""
32+
OLEDVirtual is a library to mock the OLED (`oled` library) screen for local development.
33+
"""
34+
end
35+
2636
defp elixirc_paths(:test), do: ["lib", "test/support"]
2737
defp elixirc_paths(_), do: ["lib"]
2838

@@ -36,9 +46,17 @@ defmodule OLEDVirtual.MixProject do
3646
]
3747
end
3848

49+
defp package do
50+
%{
51+
maintainers: ["Phillipp Ohlandt"],
52+
licenses: ["MIT"],
53+
links: %{"GitHub" => "https://github.com/pappersverk/oled_virtual"}
54+
}
55+
end
56+
3957
defp docs do
4058
[
41-
main: "OledVirtual",
59+
main: "OLEDVirtual",
4260
source_ref: @version,
4361
source_url: "https://github.com/pappersverk/oled_virtual",
4462
extra_section: "GUIDES",

0 commit comments

Comments
 (0)