From d1c72486ab617ea376067cf45b20d677a5e78644 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Wed, 17 Oct 2018 15:46:34 +0200 Subject: [PATCH] Document "next" branch Fixes #1 --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a5578b..74ab65c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # embedded-hal-mock -[![CircleCI][circle-ci-badge]][circle-ci] +- Master: [![CircleCI][circle-ci-badge]][circle-ci] +- Next: [![CircleCI][circle-ci-badge-next]][circle-ci-next] This is a collection of types that implement the embedded-hal traits. @@ -29,6 +30,16 @@ know. See [docs](https://docs.rs/embedded-hal-mock/). +## Development Version of `embedded-hal` + +If you would like to use the current development version of `embedded-hal`, you +can point your project at the `next` branch of this repository: + +https://github.com/rust-embedded/embedded-hal/tree/next + + [dev-dependencies] + embedded-hal = { git = "https://github.com/dbrgn/embedded-hal-mock", branch = "next" } + ## License Licensed under either of @@ -48,3 +59,5 @@ be dual licensed as above, without any additional terms or conditions. [circle-ci]: https://circleci.com/gh/dbrgn/embedded-hal-mock/tree/master [circle-ci-badge]: https://circleci.com/gh/dbrgn/embedded-hal-mock/tree/master.svg?style=shield +[circle-ci-next]: https://circleci.com/gh/dbrgn/embedded-hal-mock/tree/next +[circle-ci-badge-next]: https://circleci.com/gh/dbrgn/embedded-hal-mock/tree/next.svg?style=shield