diff --git a/docs/README.md b/docs/README.md index da8556a9e8..912d9b6cd9 100644 --- a/docs/README.md +++ b/docs/README.md @@ -171,7 +171,7 @@ https://decred.org/community/ The following versioned modules are provided by dcrd repository: -* [rpcclient/v8](https://github.com/decred/dcrd/tree/master/rpcclient) - Implements +* [rpcclient/v9](https://github.com/decred/dcrd/tree/master/rpcclient) - Implements a robust and easy to use Websocket-enabled Decred JSON-RPC client * [dcrjson/v4](https://github.com/decred/dcrd/tree/master/dcrjson) - Provides infrastructure for working with Decred JSON-RPC APIs diff --git a/docs/assets/module_hierarchy.gv b/docs/assets/module_hierarchy.gv index 0d7eeb2518..802bc7c3c8 100644 --- a/docs/assets/module_hierarchy.gv +++ b/docs/assets/module_hierarchy.gv @@ -25,7 +25,7 @@ digraph { standalone [label="blockchain/standalone/v2" fillcolor=firebrick4] lru [label="container/lru" fillcolor=royalblue3] peer [label="peer/v3" fillcolor=khaki] - rpcclient [label="rpcclient/v8" fillcolor=mediumseagreen] + rpcclient [label="rpcclient/v9" fillcolor=mediumseagreen] addrmgr [label="addrmgr/v3" fillcolor=lightsalmon] blockchain [label="blockchain/v5" fillcolor=orchid] apbf [label="container/apbf" fillcolor=goldenrod] diff --git a/docs/assets/module_hierarchy.svg b/docs/assets/module_hierarchy.svg index f772ebde7b..afed3345f9 100644 --- a/docs/assets/module_hierarchy.svg +++ b/docs/assets/module_hierarchy.svg @@ -139,7 +139,7 @@ rpcclient -rpcclient/v8 +rpcclient/v9 diff --git a/docs/json_rpc_api.mediawiki b/docs/json_rpc_api.mediawiki index f545a37ae3..b2cb8e2795 100644 --- a/docs/json_rpc_api.mediawiki +++ b/docs/json_rpc_api.mediawiki @@ -3458,7 +3458,7 @@ import ( "path/filepath" "github.com/decred/dcrd/dcrutil/v4" - "github.com/decred/dcrd/rpcclient/v8" + "github.com/decred/dcrd/rpcclient/v9" ) func main() { @@ -3522,7 +3522,7 @@ import ( "github.com/decred/dcrd/chaincfg/chainhash" "github.com/decred/dcrd/dcrutil/v4" - "github.com/decred/dcrd/rpcclient/v8" + "github.com/decred/dcrd/rpcclient/v9" ) func main() { @@ -3612,7 +3612,7 @@ import ( "time" "github.com/decred/dcrd/dcrutil/v4" - "github.com/decred/dcrd/rpcclient/v8" + "github.com/decred/dcrd/rpcclient/v9" ) func main() { diff --git a/rpcclient/README.md b/rpcclient/README.md index 6ad4ab0842..5cc5e6350b 100644 --- a/rpcclient/README.md +++ b/rpcclient/README.md @@ -3,7 +3,7 @@ rpcclient [![Build Status](https://github.com/decred/dcrd/workflows/Build%20and%20Test/badge.svg)](https://github.com/decred/dcrd/actions) [![ISC License](https://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org) -[![Doc](https://img.shields.io/badge/doc-reference-blue.svg)](https://pkg.go.dev/github.com/decred/dcrd/rpcclient/v8) +[![Doc](https://img.shields.io/badge/doc-reference-blue.svg)](https://pkg.go.dev/github.com/decred/dcrd/rpcclient/v9) rpcclient implements a Websocket-enabled Decred JSON-RPC client package written in [Go](https://golang.org/). It provides a robust and easy to use client for @@ -18,7 +18,7 @@ implement and the API is not stable yet. ## Documentation -* [API Reference](https://pkg.go.dev/github.com/decred/dcrd/rpcclient/v8) +* [API Reference](https://pkg.go.dev/github.com/decred/dcrd/rpcclient/v9) * [dcrd Websockets Example](https://github.com/decred/dcrd/tree/master/rpcclient/examples/dcrdwebsockets) Connects to a dcrd RPC server using TLS-secured websockets, registers for block connected and block disconnected notifications, and gets the current @@ -38,7 +38,7 @@ implement and the API is not stable yet. ## Installation and Updating -This package is part of the `github.com/decred/dcrd/rpcclient/v8` module. Use +This package is part of the `github.com/decred/dcrd/rpcclient/v9` module. Use the standard go tooling for working with modules to incorporate it. ## License