From f8c60cc72fdd6a67835f06bba6a52e54b6463a3e Mon Sep 17 00:00:00 2001 From: Chris Stewart Date: Thu, 21 May 2020 06:17:05 -0500 Subject: [PATCH] Update stable version in doc.sbt, add getting started link to README.md (#1453) --- README.md | 6 ++++++ bitcoin-s-docs/docs.sbt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2dc9e06f6b..c8af927ce8 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,12 @@ on the JVM. For a complete guide on how to get started with Bitcoin-S, see our website at [Bitcoin-S.org](https://bitcoin-s.org) +### Getting started + +https://bitcoin-s.org/docs/getting-setup + +### Adding bitcoin-s to your library + The latest release of bitcoin-s is `v0.3.0`, here is how you can use the dependencies in your projects: ``` diff --git a/bitcoin-s-docs/docs.sbt b/bitcoin-s-docs/docs.sbt index 146cf2a1cb..48a3b90942 100644 --- a/bitcoin-s-docs/docs.sbt +++ b/bitcoin-s-docs/docs.sbt @@ -25,7 +25,7 @@ mdocExtraArguments := List("--no-link-hygiene") // these variables gets passed to mdoc, and can be read // from there mdocVariables := Map( - "STABLE_VERSION" -> "0.2.0", + "STABLE_VERSION" -> "0.3.0", "UNSTABLE_VERSION" -> version.value )