Skip to content

Commit 9bd924a

Browse files
authored
Merge pull request #1550 from ipfs/bump-documentation-to-latest-versions
Update release version numbers
2 parents cfe8762 + 7da0828 commit 9bd924a

File tree

5 files changed

+71
-70
lines changed

5 files changed

+71
-70
lines changed

docs/install/command-line.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Kubo
33
description: Using IPFS Kubo 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.19.0
4+
current-ipfs-version: v0.19.1
55
---
66

77
# Install IPFS Kubo
@@ -31,7 +31,7 @@ Kubo runs on most Windows, MacOS, Linux, FreeBSD and OpenBSD systems that meet t
3131

3232
Note the following:
3333
- The amount of disk space your IPFS installation uses depends on how much data you're sharing. A base installation uses around 12MB of disk space.
34-
- You can enable automatic garbage collection via [--enable-gc](../reference/kubo/cli.md#ipfs-daemon) and adjust using [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.19.0/docs/config.md#datastorestoragemax) for data retrieved from other peers.
34+
- You can enable automatic garbage collection via [--enable-gc](../reference/kubo/cli.md#ipfs-daemon) and adjust using [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.19.1/docs/config.md#datastorestoragemax) for data retrieved from other peers.
3535

3636
### Kubo on resource-constrained systems
3737

@@ -72,27 +72,27 @@ For installation instructions for your operating system, select the appropriate
7272
1. Download the Windows binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
7373

7474
```powershell
75-
wget https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_windows-amd64.zip -Outfile kubo_v0.19.0.zip
75+
wget https://dist.ipfs.tech/kubo/v0.19.1/kubo_v0.19.1_windows-amd64.zip -Outfile kubo_v0.19.1.zip
7676
```
7777

78-
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.19.0`.
78+
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.19.1`.
7979

8080
```powershell
81-
Expand-Archive -Path kubo_v0.19.0.zip -DestinationPath ~\Apps\kubo_v0.19.0
81+
Expand-Archive -Path kubo_v0.19.1.zip -DestinationPath ~\Apps\kubo_v0.19.1
8282
```
8383

84-
1. Move into the `kubo_v0.19.0` folder
84+
1. Move into the `kubo_v0.19.1` folder
8585

8686
```powershell
87-
cd ~\Apps\kubo_v0.19.0\kubo
87+
cd ~\Apps\kubo_v0.19.1\kubo
8888
```
8989

9090
1. Check that the `ipfs.exe` works:
9191

9292
```powershell
9393
.\ipfs.exe --version
9494
95-
> ipfs version 0.19.0
95+
> ipfs version 0.19.1
9696
```
9797

9898
At this point, Kubo is usable. However, it's strongly recommended that you first add `ipfs.exe` to your `PATH` using the following steps:
@@ -138,7 +138,7 @@ For installation instructions for your operating system, select the appropriate
138138
```powershell
139139
ipfs --version
140140
141-
> ipfs version 0.19.0
141+
> ipfs version 0.19.1
142142
```
143143

144144
:::
@@ -159,28 +159,28 @@ For installation instructions for your operating system, select the appropriate
159159
1. Download the appropriate macOS binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo) based on your hardware. For example:
160160

161161
```bash
162-
curl -O https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_darwin-amd64.tar.gz
162+
curl -O https://dist.ipfs.tech/kubo/v0.19.1/kubo_v0.19.1_darwin-amd64.tar.gz
163163
```
164164

165165
> :warning:
166166
> Ensure that you download and install the appropriate binary, as the binary for an Intel-based system won't work on a system with Apple Silicon, and vice-versa.
167167
168-
- _If you are using hardware with Apple Silicon, download the `darwin-arm64` binary._ For example, to download the IPFS binary for `Kubo v0.19.0` for an Apple-based system, run the following command:
168+
- _If you are using hardware with Apple Silicon, download the `darwin-arm64` binary._ For example, to download the IPFS binary for `Kubo v0.19.1` for an Apple-based system, run the following command:
169169

170170
```bash
171-
curl -O https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_darwin-arm64.tar.gz
171+
curl -O https://dist.ipfs.tech/kubo/v0.19.1/kubo_v0.19.1_darwin-arm64.tar.gz
172172
```
173173

174-
- _If you are using hardware with an Intel Processor, download the `darwin-amd64` binary._ For example, to download the IPFS binary for `Kubo v0.19.0` for an Intel-based system, run the following command:
174+
- _If you are using hardware with an Intel Processor, download the `darwin-amd64` binary._ For example, to download the IPFS binary for `Kubo v0.19.1` for an Intel-based system, run the following command:
175175

176176
```bash
177-
curl -O https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_darwin-amd64.tar.gz
177+
curl -O https://dist.ipfs.tech/kubo/v0.19.1/kubo_v0.19.1_darwin-amd64.tar.gz
178178
```
179179

180-
1. Unzip the file. For example, to unzip `Kubo v0.19.0` for an Intel-based system:
180+
1. Unzip the file. For example, to unzip `Kubo v0.19.1` for an Intel-based system:
181181

182182
```bash
183-
tar -xvzf kubo_v0.19.0_darwin-amd64.tar.gz
183+
tar -xvzf kubo_v0.19.1_darwin-amd64.tar.gz
184184
```
185185

186186
The following output displays:
@@ -218,7 +218,7 @@ For installation instructions for your operating system, select the appropriate
218218
If Kubo is installed, the version number displays. For example:
219219

220220
```bash
221-
> ipfs version 0.19.0
221+
> ipfs version 0.19.1
222222
```
223223

224224
:::
@@ -230,13 +230,13 @@ For installation instructions for your operating system, select the appropriate
230230
1. Download the Linux binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
231231

232232
```bash
233-
wget https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_linux-amd64.tar.gz
233+
wget https://dist.ipfs.tech/kubo/v0.19.1/kubo_v0.19.1_linux-amd64.tar.gz
234234
```
235235

236236
1. Unzip the file:
237237

238238
```bash
239-
tar -xvzf kubo_v0.19.0_linux-amd64.tar.gz
239+
tar -xvzf kubo_v0.19.1_linux-amd64.tar.gz
240240
241241
> x kubo/install.sh
242242
> x kubo/ipfs
@@ -265,7 +265,7 @@ For installation instructions for your operating system, select the appropriate
265265
```bash
266266
ipfs --version
267267
268-
> ipfs version 0.19.0
268+
> ipfs version 0.19.1
269269
```
270270

271271
:::
@@ -277,13 +277,13 @@ For installation instructions for your operating system, select the appropriate
277277
1. Download the FreeBSD binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
278278

279279
```bash
280-
wget https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_freebsd-amd64.tar.gz
280+
wget https://dist.ipfs.tech/kubo/v0.19.1/kubo_v0.19.1_freebsd-amd64.tar.gz
281281
```
282282

283283
1. Unzip the file:
284284

285285
```bash
286-
tar -xvzf kubo_v0.19.0_freebsd-amd64.tar.gz
286+
tar -xvzf kubo_v0.19.1_freebsd-amd64.tar.gz
287287
288288
> x kubo/install.sh
289289
> x kubo/ipfs
@@ -312,7 +312,7 @@ For installation instructions for your operating system, select the appropriate
312312
```bash
313313
ipfs --version
314314
315-
> ipfs version 0.19.0
315+
> ipfs version 0.19.1
316316
```
317317

318318
:::
@@ -324,13 +324,13 @@ For installation instructions for your operating system, select the appropriate
324324
1. Download the OpenBSD binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
325325

326326
```bash
327-
wget https://dist.ipfs.tech/kubo/v0.19.0/kubo_v0.19.0_openbsd-amd64.tar.gz
327+
wget https://dist.ipfs.tech/kubo/v0.19.1/kubo_v0.19.1_openbsd-amd64.tar.gz
328328
```
329329

330330
1. Unzip the file:
331331

332332
```bash
333-
tar -xvzf kubo_v0.19.0_openbsd-amd64.tar.gz
333+
tar -xvzf kubo_v0.19.1_openbsd-amd64.tar.gz
334334
335335
> x kubo/install.sh
336336
> x kubo/ipfs
@@ -359,7 +359,7 @@ For installation instructions for your operating system, select the appropriate
359359
```bash
360360
ipfs --version
361361
362-
> ipfs version 0.19.0
362+
> ipfs version 0.19.1
363363
```
364364

365365
:::
@@ -371,7 +371,7 @@ For installation instructions for your operating system, select the appropriate
371371

372372
## Build Kubo from source
373373

374-
For the current instructions on how to manually download, compile and build Kubo from source, see the [Build from Source](https://github.com/ipfs/kubo/blob/v0.19.0/README.md#build-from-source) section in the Kubo repository.
374+
For the current instructions on how to manually download, compile and build Kubo from source, see the [Build from Source](https://github.com/ipfs/kubo/blob/v0.19.1/README.md#build-from-source) section in the Kubo repository.
375375

376376
## Determining which node to use with the command line
377377

docs/reference/kubo/cli.md

Lines changed: 33 additions & 33 deletions
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 2023-03-20 15:40:55, from kubo 0.19.0
9-
This document was autogenerated from CLI help text in [kubo 0.19.0](https://github.com/ipfs/kubo/releases/tag/v0.19.0)
8+
::: tip Generated on 2023-04-11 17:35:04, from kubo 0.19.1
9+
This document was autogenerated from CLI help text in [kubo 0.19.1](https://github.com/ipfs/kubo/releases/tag/v0.19.1)
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

@@ -1044,40 +1044,12 @@ SYNOPSIS
10441044
DESCRIPTION
10451045
10461046
Available profiles:
1047-
'local-discovery':
1048-
Sets default values to fields affected by the server
1049-
profile, enables discovery in local networks.
1050-
'test':
1051-
Reduces external interference of IPFS daemon, this
1052-
is useful when using the daemon in test environments.
1053-
'badgerds':
1054-
Configures the node to use the experimental badger datastore.
1055-
1056-
Use this datastore if some aspects of performance,
1057-
especially the speed of adding many gigabytes of files, are critical.
1058-
However, be aware that:
1059-
1060-
* This datastore will not properly reclaim space when your datastore is
1061-
smaller than several gigabytes. If you run IPFS with --enable-gc, you plan
1062-
on storing very little data in your IPFS node, and disk usage is more
1063-
critical than performance, consider using flatfs.
1064-
* This datastore uses up to several gigabytes of memory.
1065-
* Good for medium-size datastores, but may run into performance issues
1066-
if your dataset is bigger than a terabyte.
1067-
* The current implementation is based on old badger 1.x
1068-
which is no longer supported by the upstream team.
1069-
1070-
This profile may only be applied when first initializing the node.
1071-
'lowpower':
1072-
Reduces daemon overhead on the system. May affect node
1073-
functionality - performance of content discovery and data
1074-
fetching may be degraded.
1075-
1076-
'randomports':
1077-
Use a random port number for swarm.
10781047
'server':
10791048
Disables local host discovery, recommended when
10801049
running IPFS on machines with public IPv4 addresses.
1050+
'local-discovery':
1051+
Sets default values to fields affected by the server
1052+
profile, enables discovery in local networks.
10811053
'default-datastore':
10821054
Configures the node to use the default datastore (flatfs).
10831055
@@ -1101,9 +1073,37 @@ DESCRIPTION
11011073
11021074
This profile may only be applied when first initializing the node.
11031075
1076+
'lowpower':
1077+
Reduces daemon overhead on the system. May affect node
1078+
functionality - performance of content discovery and data
1079+
fetching may be degraded.
1080+
1081+
'test':
1082+
Reduces external interference of IPFS daemon, this
1083+
is useful when using the daemon in test environments.
11041084
'default-networking':
11051085
Restores default network settings.
11061086
Inverse profile of the test profile.
1087+
'badgerds':
1088+
Configures the node to use the experimental badger datastore.
1089+
1090+
Use this datastore if some aspects of performance,
1091+
especially the speed of adding many gigabytes of files, are critical.
1092+
However, be aware that:
1093+
1094+
* This datastore will not properly reclaim space when your datastore is
1095+
smaller than several gigabytes. If you run IPFS with --enable-gc, you plan
1096+
on storing very little data in your IPFS node, and disk usage is more
1097+
critical than performance, consider using flatfs.
1098+
* This datastore uses up to several gigabytes of memory.
1099+
* Good for medium-size datastores, but may run into performance issues
1100+
if your dataset is bigger than a terabyte.
1101+
* The current implementation is based on old badger 1.x
1102+
which is no longer supported by the upstream team.
1103+
1104+
This profile may only be applied when first initializing the node.
1105+
'randomports':
1106+
Use a random port number for swarm.
11071107
11081108
SUBCOMMANDS
11091109
ipfs config profile apply <profile> - Apply profile to config.

docs/reference/kubo/rpc.md

Lines changed: 2 additions & 2 deletions
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 2023-03-20, from kubo v0.19.0
51-
This document was autogenerated from [v0.19.0](https://github.com/ipfs/kubo/releases/tag/v0.19.0).
50+
::: tip Generated on 2023-04-11, from kubo v0.19.1
51+
This document was autogenerated from [v0.19.1](https://github.com/ipfs/kubo/releases/tag/v0.19.1).
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

Lines changed: 1 addition & 1 deletion
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.3.2
88
github.com/ipfs/go-ipfs-cmds v0.8.2
9-
github.com/ipfs/kubo v0.19.0
9+
github.com/ipfs/kubo v0.19.1
1010
github.com/libp2p/go-libp2p-core v0.20.1
1111
github.com/multiformats/go-multiaddr v0.8.0
1212
)

tools/http-api-docs/go.sum

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,9 @@ github.com/ipfs/go-blockservice v0.1.4/go.mod h1:OTZhFpkgY48kNzbgyvcexW9cHrpjBYI
499499
github.com/ipfs/go-blockservice v0.2.1/go.mod h1:k6SiwmgyYgs4M/qt+ww6amPeUH9EISLRBnvUurKJhi8=
500500
github.com/ipfs/go-blockservice v0.3.0/go.mod h1:P5ppi8IHDC7O+pA0AlGTF09jruB2h+oP3wVVaZl8sfk=
501501
github.com/ipfs/go-blockservice v0.4.0/go.mod h1:kRjO3wlGW9mS1aKuiCeGhx9K1DagQ10ACpVO59qgAx4=
502-
github.com/ipfs/go-blockservice v0.5.0 h1:B2mwhhhVQl2ntW2EIpaWPwSCxSuqr5fFA93Ms4bYLEY=
503502
github.com/ipfs/go-blockservice v0.5.0/go.mod h1:W6brZ5k20AehbmERplmERn8o2Ni3ZZubvAxaIUeaT6w=
503+
github.com/ipfs/go-blockservice v0.5.1 h1:9pAtkyKAz/skdHTh0kH8VulzWp+qmSDD0aI17TYP/s0=
504+
github.com/ipfs/go-blockservice v0.5.1/go.mod h1:VpMblFEqG67A/H2sHKAemeH9vlURVavlysbdUI632yk=
504505
github.com/ipfs/go-cid v0.0.1/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM=
505506
github.com/ipfs/go-cid v0.0.2/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM=
506507
github.com/ipfs/go-cid v0.0.3/go.mod h1:GHWU/WuQdMPmIosc4Yn1bcCT7dSeX4lBafM7iqUPQvM=
@@ -697,8 +698,8 @@ github.com/ipfs/interface-go-ipfs-core v0.9.0/go.mod h1:F3EcmDy53GFkF0H3iEJpfJC3
697698
github.com/ipfs/interface-go-ipfs-core v0.10.0/go.mod h1:F3EcmDy53GFkF0H3iEJpfJC320fZ/4G60eftnItrrJ0=
698699
github.com/ipfs/interface-go-ipfs-core v0.11.0 h1:n1tplrwsz7oZXkpkZM5a3MDBxksMfSQ103ej4e+l7NA=
699700
github.com/ipfs/interface-go-ipfs-core v0.11.0/go.mod h1:xmnoccUXY7N/Q8AIx0vFqgW926/FAZ8+do/1NTEHKsU=
700-
github.com/ipfs/kubo v0.19.0 h1:5B58RXikTqs9six7FweQSzo6WvBKiP2MVwYCvJomV7k=
701-
github.com/ipfs/kubo v0.19.0/go.mod h1:OqX4B1YWKWCvi9T/sKDfTBMAKbVi6yVIXAii6/nr1Dc=
701+
github.com/ipfs/kubo v0.19.1 h1:jQmwct9gurfZcpShmfwZf/0CXSgxgTVWJxx//l4Ob3M=
702+
github.com/ipfs/kubo v0.19.1/go.mod h1:jD1cb+H5ax9EzxLflHG8dz5LHfuAMO+r00/h3MwYkd4=
702703
github.com/ipld/edelweiss v0.2.0 h1:KfAZBP8eeJtrLxLhi7r3N0cBCo7JmwSRhOJp3WSpNjk=
703704
github.com/ipld/edelweiss v0.2.0/go.mod h1:FJAzJRCep4iI8FOFlRriN9n0b7OuX3T/S9++NpBDmA4=
704705
github.com/ipld/go-car v0.5.0 h1:kcCEa3CvYMs0iE5BzD5sV7O2EwMiCIp3uF8tA6APQT8=
@@ -840,8 +841,8 @@ github.com/libp2p/go-libp2p v0.23.2/go.mod h1:s9DEa5NLR4g+LZS+md5uGU4emjMWFiqkZr
840841
github.com/libp2p/go-libp2p v0.23.4/go.mod h1:s9DEa5NLR4g+LZS+md5uGU4emjMWFiqkZr6hBTY8UxI=
841842
github.com/libp2p/go-libp2p v0.25.0/go.mod h1:vXHmFpcfl+xIGN4qW58Bw3a0/SKGAesr5/T4IuJHE3o=
842843
github.com/libp2p/go-libp2p v0.25.1/go.mod h1:xnK9/1d9+jeQCVvi/f1g12KqtVi/jP/SijtKV1hML3g=
843-
github.com/libp2p/go-libp2p v0.26.3 h1:6g/psubqwdaBqNNoidbRKSTBEYgaOuKBhHl8Q5tO+PM=
844-
github.com/libp2p/go-libp2p v0.26.3/go.mod h1:x75BN32YbwuY0Awm2Uix4d4KOz+/4piInkp4Wr3yOo8=
844+
github.com/libp2p/go-libp2p v0.26.4 h1:VA9ChjN0n1BwwfU/dqx4Zj9ezXtIxGk8FyJPwFONqxs=
845+
github.com/libp2p/go-libp2p v0.26.4/go.mod h1:x75BN32YbwuY0Awm2Uix4d4KOz+/4piInkp4Wr3yOo8=
845846
github.com/libp2p/go-libp2p-asn-util v0.2.0 h1:rg3+Os8jbnO5DxkC7K/Utdi+DkY3q/d1/1q+8WeNAsw=
846847
github.com/libp2p/go-libp2p-asn-util v0.2.0/go.mod h1:WoaWxbHKBymSN41hWSq/lGKJEca7TNm58+gGJi2WsLI=
847848
github.com/libp2p/go-libp2p-autonat v0.1.0/go.mod h1:1tLf2yXxiE/oKGtDwPYWTSYG3PtvYlJmg7NeVtPRqH8=
@@ -930,8 +931,8 @@ github.com/libp2p/go-libp2p-record v0.1.0/go.mod h1:ujNc8iuE5dlKWVy6wuL6dd58t0n7
930931
github.com/libp2p/go-libp2p-record v0.2.0 h1:oiNUOCWno2BFuxt3my4i1frNrt7PerzB3queqa1NkQ0=
931932
github.com/libp2p/go-libp2p-record v0.2.0/go.mod h1:I+3zMkvvg5m2OcSdoL0KPljyJyvNDFGKX7QdlpYUcwk=
932933
github.com/libp2p/go-libp2p-routing-helpers v0.4.0/go.mod h1:dYEAgkVhqho3/YKxfOEGdFMIcWfAFNlZX8iAIihYA2E=
933-
github.com/libp2p/go-libp2p-routing-helpers v0.6.1 h1:tI3rHOf/FDQsxC2pHBaOZiqPJ0MZYyzGAf4V45xla4U=
934-
github.com/libp2p/go-libp2p-routing-helpers v0.6.1/go.mod h1:R289GUxUMzRXIbWGSuUUTPrlVJZ3Y/pPz495+qgXJX8=
934+
github.com/libp2p/go-libp2p-routing-helpers v0.6.2 h1:u6SWfX+3LoqqTAFxWVl79RkcIDE3Zsay5d+JohlEBaE=
935+
github.com/libp2p/go-libp2p-routing-helpers v0.6.2/go.mod h1:R289GUxUMzRXIbWGSuUUTPrlVJZ3Y/pPz495+qgXJX8=
935936
github.com/libp2p/go-libp2p-secio v0.1.0/go.mod h1:tMJo2w7h3+wN4pgU2LSYeiKPrfqBgkOsdiKK77hE7c8=
936937
github.com/libp2p/go-libp2p-secio v0.2.0/go.mod h1:2JdZepB8J5V9mBp79BmwsaPQhRPNN2NrnB2lKQcdy6g=
937938
github.com/libp2p/go-libp2p-secio v0.2.1/go.mod h1:cWtZpILJqkqrSkiYcDBh5lA3wbT2Q+hz3rJQq3iftD8=

0 commit comments

Comments
 (0)