File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3- ## 0.1 .0
3+ ## 1.0 .0
44
55- Initial release
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ by adding `oled_virtual` to your list of dependencies in `mix.exs`:
1717``` elixir
1818def deps do
1919 [
20- {:oled_virtual , " ~> 0. 1.0" }
20+ {:oled_virtual , " ~> 1.0" }
2121 ]
2222end
2323```
Original file line number Diff line number Diff line change 4141defp deps do
4242 [
4343 .. .
44- {:oled_virtual , " ~> 0. 1.0" }
44+ {:oled_virtual , " ~> 1.0" }
4545 ]
4646end
4747```
Original file line number Diff line number Diff line change 11defmodule 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" ,
You can’t perform that action at this time.
0 commit comments