Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tmecklem committed Oct 27, 2017
1 parent 3248a2b commit eaa403b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.0.0

This release marks the feature complete, minimum viable state of the package. In addition to UART, SPI is now supported.

## v0.9.0

This is an initial release of the package, containing the following:
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# SubgRfspy

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.
Elixir SubgRfspy is a package to communicate with TI cc111x chips running the wireless packet
firmware [subg_rfspy](https://github.com/ps2/subg_rfspy). UART and SPI are the two serial protocols supported.

## Installation

Expand All @@ -9,7 +10,7 @@ Add `subg_rfspy` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:subg_rfspy, "~> 0.9.0"}
{:subg_rfspy, "~> 1.0.0"}
]
end
```
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule SubgRfspy.Mixfile do
def project do
[
app: :subg_rfspy,
version: "0.9.0",
version: "1.0.0",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
Expand Down

0 comments on commit eaa403b

Please sign in to comment.