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

Commit

Permalink
Merge #414
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
bors[bot] and Joonas Koivunen committed Oct 8, 2020
2 parents 2a875da + 7cfa005 commit 860af8d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Next

# 0.2.1

* fix: restore_bootstrappers doesn't enable content discovery [#406]

[#406]: https://github.com/rs-ipfs/rust-ipfs/pull/406
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "ipfs"
readme = "README.md"
repository = "https://github.com/rs-ipfs/rust-ipfs"
description = "IPFS node implementation"
version = "0.2.0"
version = "0.2.1"

[features]
default = []
Expand Down
9 changes: 0 additions & 9 deletions examples/fetch_and_cat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,6 @@ use tokio::io::AsyncWriteExt;
async fn main() {
tracing_subscriber::fmt::init();

// This example attempts to fetch a CID provided at command line. It is expected to be used by
// either:
//
// - connecting another ipfs peer to it
// - be given the other peers address as the last argument
//
// The other connecting or connected peer must be providing the requested CID or this will hang
// forever.

let (bootstrappers, path, target) = match parse_options() {
Ok(Some(tuple)) => tuple,
Ok(None) => {
Expand Down
5 changes: 5 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
//! [interface-ipfs-core]: https://www.npmjs.com/package/interface-ipfs-core
//! [go-ipfs]: https://github.com/ipfs/go-ipfs/
//! [js-ipfs]: https://github.com/ipfs/js-ipfs/
// We are not done yet, but uncommenting this makes it easier to hunt down for missing docs.
//#![deny(missing_docs)]
//
// This isn't recognized in stable yet, but we should disregard any nags on these to keep making
// the docs better.
//#![allow(private_intra_doc_links)]

pub mod config;
pub mod dag;
Expand Down

0 comments on commit 860af8d

Please sign in to comment.