Skip to content

Commit eaa403b

Browse files
committed
v1.0.0
1 parent 3248a2b commit eaa403b

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.0.0
2+
3+
This release marks the feature complete, minimum viable state of the package. In addition to UART, SPI is now supported.
4+
15
## v0.9.0
26

37
This is an initial release of the package, containing the following:

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SubgRfspy
22

3-
Elixir SubgRfspy is a package to communicate with TI cc111x chips running the wireless packet firmware [subg_rfspy](https://github.com/ps2/subg_rfspy). Currently, the only implementation is via a UART connection, but an SPI implementation is in the works as well.
3+
Elixir SubgRfspy is a package to communicate with TI cc111x chips running the wireless packet
4+
firmware [subg_rfspy](https://github.com/ps2/subg_rfspy). UART and SPI are the two serial protocols supported.
45

56
## Installation
67

@@ -9,7 +10,7 @@ Add `subg_rfspy` to your list of dependencies in `mix.exs`:
910
```elixir
1011
def deps do
1112
[
12-
{:subg_rfspy, "~> 0.9.0"}
13+
{:subg_rfspy, "~> 1.0.0"}
1314
]
1415
end
1516
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule SubgRfspy.Mixfile do
44
def project do
55
[
66
app: :subg_rfspy,
7-
version: "0.9.0",
7+
version: "1.0.0",
88
elixir: "~> 1.5",
99
start_permanent: Mix.env == :prod,
1010
deps: deps(),

0 commit comments

Comments
 (0)