Skip to content
This repository was archived by the owner on Oct 23, 2022. It is now read-only.

Commit 860af8d

Browse files
bors[bot]Joonas Koivunen
andauthored
Merge #414
414: Prepare 0.2.1 release r=koivunej a=koivunej Tracked in #413. This turned out a bit misc PR with the comment removal from fetch_and_cat and all that. Co-authored-by: Joonas Koivunen <joonas@equilibrium.co>
2 parents 2a875da + 7cfa005 commit 860af8d

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Next
22

3+
# 0.2.1
4+
35
* fix: restore_bootstrappers doesn't enable content discovery [#406]
46

57
[#406]: https://github.com/rs-ipfs/rust-ipfs/pull/406

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name = "ipfs"
66
readme = "README.md"
77
repository = "https://github.com/rs-ipfs/rust-ipfs"
88
description = "IPFS node implementation"
9-
version = "0.2.0"
9+
version = "0.2.1"
1010

1111
[features]
1212
default = []

examples/fetch_and_cat.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,6 @@ use tokio::io::AsyncWriteExt;
99
async fn main() {
1010
tracing_subscriber::fmt::init();
1111

12-
// This example attempts to fetch a CID provided at command line. It is expected to be used by
13-
// either:
14-
//
15-
// - connecting another ipfs peer to it
16-
// - be given the other peers address as the last argument
17-
//
18-
// The other connecting or connected peer must be providing the requested CID or this will hang
19-
// forever.
20-
2112
let (bootstrappers, path, target) = match parse_options() {
2213
Ok(Some(tuple)) => tuple,
2314
Ok(None) => {

src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@
1515
//! [interface-ipfs-core]: https://www.npmjs.com/package/interface-ipfs-core
1616
//! [go-ipfs]: https://github.com/ipfs/go-ipfs/
1717
//! [js-ipfs]: https://github.com/ipfs/js-ipfs/
18+
// We are not done yet, but uncommenting this makes it easier to hunt down for missing docs.
1819
//#![deny(missing_docs)]
20+
//
21+
// This isn't recognized in stable yet, but we should disregard any nags on these to keep making
22+
// the docs better.
23+
//#![allow(private_intra_doc_links)]
1924

2025
pub mod config;
2126
pub mod dag;

0 commit comments

Comments
 (0)