Packages

Wafer is an Elixir library to make writing drivers for i2c and SPI connected peripherals and interacting with GPIO pins easier.

Current section

16 Versions

Jump to

Compare versions

4 files changed
+27 additions
-4 deletions
  @@ -5,6 +5,24 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
5 5
6 6 <!-- changelog -->
7 7
8 + ## [v0.3.0](https://gitlab.com/jimsy/wafer/compare/v0.2.0...v0.3.0) (2020-12-28)
9 +
10 +
11 +
12 +
13 + ### Features:
14 +
15 + * git_ops: Auto-releasing using git_ops.
16 +
17 + ## [v0.2.0](https://gitlab.com/jimsy/wafer/compare/v0.1.6...v0.2.0) (2020-12-27)
18 +
19 +
20 +
21 +
22 + ### Features:
23 +
24 + * git_ops: Auto-releasing using git_ops.
25 +
8 26 ## [v0.1.6](https://gitlab.com/jimsy/wafer/compare/v0.1.5...v0.1.6) (2020-12-26)
  @@ -122,7 +122,7 @@ by adding `wafer` to your list of dependencies in `mix.exs`:
122 122 ```elixir
123 123 def deps do
124 124 [
125 - {:wafer, "~> 0.1.6"}
125 + {:wafer, "~> 0.3.0"}
126 126 ]
127 127 end
128 128 ```
  @@ -59,4 +59,4 @@
59 59 {<<"optional">>,true},
60 60 {<<"repository">>,<<"hexpm">>},
61 61 {<<"requirement">>,<<"~> 1.2">>}]]}.
62 - {<<"version">>,<<"0.1.6">>}.
62 + {<<"version">>,<<"0.3.0">>}.
  @@ -7,7 +7,7 @@ defmodule Wafer.MixProject do
7 7 peripherals and interacting with GPIO pins easier.
8 8 """
9 9
10 - @version "0.1.6"
10 + @version "0.3.0"
11 11
12 12 def project do
13 13 [
  @@ -50,7 +50,12 @@ defmodule Wafer.MixProject do
50 50 {:earmark, ">= 0.0.0", only: ~w[dev test]a},
51 51 {:elixir_ale, "~> 1.2", optional: true},
52 52 {:ex_doc, ">= 0.0.0", only: ~w[dev test]a},
53 - {:git_ops, "~> 2.2", only: ~w[dev test]a, runtime: false},
53 + # {:git_ops, "~> 2.2", only: ~w[dev test]a, runtime: false},
54 + {:git_ops,
55 + git: "https://github.com/jimsynz/git_ops",
56 + branch: "add-dotenv-format",
57 + only: ~w[dev test]a,
58 + runtime: false},
54 59 {:mimic, "~> 1.1", only: :test}
55 60 ]
56 61 end