Skip to content

Commit 48ae7b1

Browse files
authored
Merge pull request #1263 from ipfs/bump-documentation-to-latest-versions
Update release version numbers
2 parents 517ed21 + 7d5a69e commit 48ae7b1

File tree

5 files changed

+154
-119
lines changed

5 files changed

+154
-119
lines changed

docs/install/command-line.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Command-line
33
description: Using IPFS through the command-line allows you to do everything that IPFS Desktop can do, but at a more granular level since you can specify which commands to run. Learn how to install it here.
4-
current-ipfs-version: v0.14.0
4+
current-ipfs-version: v0.15.0
55
---
66

77
# Command-line
@@ -12,7 +12,7 @@ Installing IPFS through the command-line is handy if you plan on building applic
1212

1313
## System requirements
1414

15-
Kubo IPFS requires 512MiB of memory and can run an IPFS node on a Raspberry Pi. However, how much disk space your IPFS installation takes up depends on how much data you're sharing. A base installation takes up about 12MB of disk space. One can enable automatic garbage collection via [--enable-gc](/reference/kubo/cli/#ipfs-daemon) and adjust the [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.14.0/docs/config.md#datastorestoragemax) for data retrieved from other peers.
15+
Kubo IPFS requires 512MiB of memory and can run an IPFS node on a Raspberry Pi. However, how much disk space your IPFS installation takes up depends on how much data you're sharing. A base installation takes up about 12MB of disk space. One can enable automatic garbage collection via [--enable-gc](/reference/kubo/cli/#ipfs-daemon) and adjust the [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.15.0/docs/config.md#datastorestoragemax) for data retrieved from other peers.
1616

1717
## Official distributions
1818

@@ -28,22 +28,22 @@ The IPFS team manages the [dist.ipfs.tech website](https://dist.ipfs.tech/) to h
2828

2929
```powershell
3030
cd ~\
31-
wget https://dist.ipfs.tech/kubo/v0.14.0/kubo_v0.14.0_windows-amd64.zip -Outfile kubo_v0.14.0.zip
31+
wget https://dist.ipfs.tech/kubo/v0.15.0/kubo_v0.15.0_windows-amd64.zip -Outfile kubo_v0.15.0.zip
3232
```
3333

3434
1. Unzip the file and move it somewhere handy.
3535

3636
```powershell
37-
Expand-Archive -Path kubo_v0.14.0.zip -DestinationPath ~\Apps\kubo_v0.14.0
37+
Expand-Archive -Path kubo_v0.15.0.zip -DestinationPath ~\Apps\kubo_v0.15.0
3838
```
3939

40-
1. Move into the `kubo_v0.14.0` folder and check that the `ipfs.exe` works:
40+
1. Move into the `kubo_v0.15.0` folder and check that the `ipfs.exe` works:
4141

4242
```powershell
43-
cd ~\Apps\kubo_v0.14.0\kubo
43+
cd ~\Apps\kubo_v0.15.0\kubo
4444
.\ipfs.exe --version
4545
46-
> ipfs version 0.14.0
46+
> ipfs version 0.15.0
4747
```
4848

4949
While you can use IPFS right now, it's better to add `ipfs.exe` to your `PATH` by using the following steps.
@@ -84,7 +84,7 @@ The IPFS team manages the [dist.ipfs.tech website](https://dist.ipfs.tech/) to h
8484
cd ~
8585
ipfs --version
8686
87-
> ipfs version 0.14.0
87+
> ipfs version 0.15.0
8888
```
8989

9090
### macOS
@@ -96,13 +96,13 @@ You can install IPFS on M1-based Macs by using the `darwin-arm64` binary instead
9696
1. Download the macOS binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
9797

9898
```bash
99-
curl -O https://dist.ipfs.tech/kubo/v0.14.0/kubo_v0.14.0_darwin-amd64.tar.gz
99+
curl -O https://dist.ipfs.tech/kubo/v0.15.0/kubo_v0.15.0_darwin-amd64.tar.gz
100100
```
101101

102102
1. Unzip the file:
103103

104104
```bash
105-
tar -xvzf kubo_v0.14.0_darwin-amd64.tar.gz
105+
tar -xvzf kubo_v0.15.0_darwin-amd64.tar.gz
106106

107107
> x kubo/install.sh
108108
> x kubo/ipfs
@@ -126,21 +126,21 @@ You can install IPFS on M1-based Macs by using the `darwin-arm64` binary instead
126126
```bash
127127
ipfs --version
128128

129-
> ipfs version 0.14.0
129+
> ipfs version 0.15.0
130130
```
131131

132132
### Linux
133133

134134
1. Download the Linux binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
135135

136136
```bash
137-
wget https://dist.ipfs.tech/kubo/v0.14.0/kubo_v0.14.0_linux-amd64.tar.gz
137+
wget https://dist.ipfs.tech/kubo/v0.15.0/kubo_v0.15.0_linux-amd64.tar.gz
138138
```
139139

140140
1. Unzip the file:
141141

142142
```bash
143-
tar -xvzf kubo_v0.14.0_linux-amd64.tar.gz
143+
tar -xvzf kubo_v0.15.0_linux-amd64.tar.gz
144144

145145
> x kubo/install.sh
146146
> x kubo/ipfs
@@ -164,7 +164,7 @@ You can install IPFS on M1-based Macs by using the `darwin-arm64` binary instead
164164
```bash
165165
ipfs --version
166166

167-
> ipfs version 0.14.0
167+
> ipfs version 0.15.0
168168
```
169169

170170
## Compile manually

docs/reference/kubo/cli.md

+46-37
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ description: API documentation for the Kubo command-line executable.
55

66
# Kubo command-line
77

8-
::: tip Generated on 2022-07-21 12:35:26, from kubo 0.14.0
9-
This document was autogenerated from CLI help text in [kubo 0.14.0](https://github.com/ipfs/kubo/releases/tag/v0.14.0)
8+
::: tip Generated on 2022-08-30 14:41:04, from kubo 0.15.0
9+
This document was autogenerated from CLI help text in [kubo 0.15.0](https://github.com/ipfs/kubo/releases/tag/v0.15.0)
1010
For issues and support, check out the [generate-cli-docs.sh](https://github.com/ipfs/ipfs-docs/blob/main/docs/reference/kubo/generate-cli-docs.sh) script on GitHub.
1111
:::
1212

@@ -94,6 +94,7 @@ SUBCOMMANDS
9494
9595
ADVANCED COMMANDS
9696
daemon Start a long-running daemon process
97+
shutdown Shut down the daemon process
9798
resolve Resolve any type of content path
9899
name Publish and resolve IPNS names
99100
key Create and list IPNS name keypairs
@@ -259,10 +260,16 @@ DESCRIPTION
259260
QmerURi9k4XzKCaaPbsK6BL5pMEjF7PGphjDvkkjDtsVf3 868
260261
QmQB28iwSriSUSMqG2nXDTLtdPHgWb4rebBrU7Q1j4vxPv 338
261262
262-
Finally, a note on hash determinism. While not guaranteed, adding the same
263-
file/directory with the same flags will almost always result in the same output
264-
hash. However, almost all of the flags provided by this command (other than pin,
265-
only-hash, and progress/status related flags) will change the final hash.
263+
Finally, a note on hash (CID) determinism and 'ipfs add' command.
264+
265+
Almost all the flags provided by this command will change the final CID, and
266+
new flags may be added in the future. It is not guaranteed for the implicit
267+
defaults of 'ipfs add' to remain the same in future Kubo releases, or for other
268+
IPFS software to use the same import parameters as Kubo.
269+
270+
If you need to back up or transport content-addressed data using a non-IPFS
271+
medium, CID can be preserved with CAR files.
272+
See 'dag export' and 'dag import' for more information.
266273
267274
268275
```
@@ -994,46 +1001,16 @@ SYNOPSIS
9941001
DESCRIPTION
9951002
9961003
Available profiles:
997-
'local-discovery':
998-
Sets default values to fields affected by the server
999-
profile, enables discovery in local networks.
1000-
'default-networking':
1001-
Restores default network settings.
1002-
Inverse profile of the test profile.
1003-
'lowpower':
1004-
Reduces daemon overhead on the system. May affect node
1005-
functionality - performance of content discovery and data
1006-
fetching may be degraded.
1007-
10081004
'server':
10091005
Disables local host discovery, recommended when
10101006
running IPFS on machines with public IPv4 addresses.
1011-
'test':
1012-
Reduces external interference of IPFS daemon, this
1013-
is useful when using the daemon in test environments.
10141007
'default-datastore':
10151008
Configures the node to use the default datastore (flatfs).
10161009
10171010
Read the "flatfs" profile description for more information on this datastore.
10181011
10191012
This profile may only be applied when first initializing the node.
10201013
1021-
'flatfs':
1022-
Configures the node to use the flatfs datastore.
1023-
1024-
This is the most battle-tested and reliable datastore.
1025-
You should use this datastore if:
1026-
1027-
* You need a very simple and very reliable datastore, and you trust your
1028-
filesystem. This datastore stores each block as a separate file in the
1029-
underlying filesystem so it's unlikely to loose data unless there's an issue
1030-
with the underlying file system.
1031-
* You need to run garbage collection in a way that reclaims free space as soon as possible.
1032-
* You want to minimize memory usage.
1033-
* You are ok with the default speed of data import, or prefer to use --nocopy.
1034-
1035-
This profile may only be applied when first initializing the node.
1036-
10371014
'badgerds':
10381015
Configures the node to use the experimental badger datastore.
10391016
@@ -1054,6 +1031,36 @@ DESCRIPTION
10541031
This profile may only be applied when first initializing the node.
10551032
'randomports':
10561033
Use a random port number for swarm.
1034+
'lowpower':
1035+
Reduces daemon overhead on the system. May affect node
1036+
functionality - performance of content discovery and data
1037+
fetching may be degraded.
1038+
1039+
'local-discovery':
1040+
Sets default values to fields affected by the server
1041+
profile, enables discovery in local networks.
1042+
'test':
1043+
Reduces external interference of IPFS daemon, this
1044+
is useful when using the daemon in test environments.
1045+
'default-networking':
1046+
Restores default network settings.
1047+
Inverse profile of the test profile.
1048+
'flatfs':
1049+
Configures the node to use the flatfs datastore.
1050+
1051+
This is the most battle-tested and reliable datastore.
1052+
You should use this datastore if:
1053+
1054+
* You need a very simple and very reliable datastore, and you trust your
1055+
filesystem. This datastore stores each block as a separate file in the
1056+
underlying filesystem so it's unlikely to loose data unless there's an issue
1057+
with the underlying file system.
1058+
* You need to run garbage collection in a way that reclaims free space as soon as possible.
1059+
* You want to minimize memory usage.
1060+
* You are ok with the default speed of data import, or prefer to use --nocopy.
1061+
1062+
This profile may only be applied when first initializing the node.
1063+
10571064
10581065
SUBCOMMANDS
10591066
ipfs config profile apply <profile> - Apply profile to config.
@@ -1316,6 +1323,7 @@ DESCRIPTION
13161323
'ipfs dag export' fetches a DAG and streams it out as a well-formed .car file.
13171324
Note that at present only single root selections / .car files are supported.
13181325
The output of blocks happens in strict DAG-traversal, first-seen, order.
1326+
CAR file follows the CARv1 format: https://ipld.io/specs/transport/car/carv1/
13191327
13201328
13211329
```
@@ -1390,7 +1398,8 @@ DESCRIPTION
13901398
currently present in the blockstore does not represent a complete DAG,
13911399
pinning of that individual root will fail.
13921400
1393-
Maximum supported CAR version: 1
1401+
Maximum supported CAR version: 2
1402+
Specification of CAR formats: https://ipld.io/specs/transport/car/
13941403
13951404
13961405
```

docs/reference/kubo/rpc.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ I AM SERIOUS, DO NOT EDIT ANYTHING BELOW ;-D
4747
4848
-->
4949

50-
::: tip Generated on 2022-07-21, from kubo v0.14.0
51-
This document was autogenerated from [v0.14.0](https://github.com/ipfs/kubo/releases/tag/v0.14.0).
50+
::: tip Generated on 2022-08-30, from kubo v0.15.0
51+
This document was autogenerated from [v0.15.0](https://github.com/ipfs/kubo/releases/tag/v0.15.0).
5252
For issues and support, check out the [http-api-docs](https://github.com/ipfs/ipfs-docs/tree/main/tools/http-api-docs) generator on GitHub.
5353
:::
5454

tools/http-api-docs/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/Stebalien/go-json-doc v0.0.2
77
github.com/ipfs/go-cid v0.2.0
88
github.com/ipfs/go-ipfs-cmds v0.8.1
9-
github.com/ipfs/kubo v0.14.0
10-
github.com/libp2p/go-libp2p-core v0.16.1
11-
github.com/multiformats/go-multiaddr v0.5.0
9+
github.com/ipfs/kubo v0.15.0
10+
github.com/libp2p/go-libp2p-core v0.19.1
11+
github.com/multiformats/go-multiaddr v0.6.0
1212
)

0 commit comments

Comments
 (0)