File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -54,14 +54,14 @@ before_install:
54
54
### ==== MODIFY THIS WHEN CHANGING TARGET OR MINIMUM IPFS VERSION ==== ###
55
55
case "${IPFS_VERSION:-latest}" in
56
56
latest) # Currently targeted version
57
- VERSION=0.6 .0
58
- SHA512_LINUX=57e4ac078f4605e3e765c6c5a54fe6e7f45268fa7ec06fc54f03e0046643dff65718f6f143a67fe08c458a7c86e30b5a53c400bdb57b6a2122bdc5df1a4b8f33
59
- SHA512_DARWIN=daf6fd4cef6b892ecff432895912c3962c4033d81c275fd8ab7172612f87db0aedfeb0d4c5a408a3f07d6f56399b4d5300d25e81c20d9cc9bed59fef02581360
60
- SHA512_WINDOWS=2fb04eaa90b57fa9239a9e05234f288d017ba6d9001fa5330929faec3d6e0ad8b7d7eab35c3d0ee42fdd52e0d60a9b591dee3e59251b6d0e00c3d1ead15bf12d
57
+ VERSION=0.7 .0
58
+ SHA512_LINUX=1d5910f27e8d7ea333145f15c6edcbacc1e8db3a99365f0847467bdfa7c73f4d7a05562e46be8e932056c8324ed0769ca1b6758dfb0ac4c2e1b6066b57c4a086
59
+ SHA512_DARWIN=d864b58e832ce49df7ef77c8012ce9e6e7585f693c03ba8e4ebf86f772eebf0d6a00dde279cdc0f16250ad20bac6f67db6b3966848c3e3bcbdc4b4d2dee1cd89
60
+ SHA512_WINDOWS=2262220e0502f00d6d429cfd16d2f0c55fa73cafb100bd72589fd1f7d97b3527dc7d49d60460650796d754f2aa4b03ba07753457691ef7d1a10d10857b819045
61
61
;;
62
62
compat) # Earliest supported version
63
- VERSION=0.4.22
64
- SHA512_LINUX=49b99fec741d67f7bad8fb6fbbd984967f06dfc3de846d10dca34b166f621a182d12f13cf5ccf4e4f33747b67cede6f4205b4cd9b57ce5244128d1385ec82c85
63
+ VERSION=0.4.23
64
+ SHA512_LINUX=5eebebd4d4628a01c3b6615d96123a5c744f64da18fc0950e00d99a36abb02eee694c1bb67549341a645ebb99f30de9198c33b556cdee2609013409a510d1d2b
65
65
;;
66
66
esac
67
67
### ------------------------------ END ------------------------------- ###
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ See the [relevant section of the CHANGELOG](CHANGELOG.md#py-ipfs-http-client-041
16
16
unmaintained and does not work with any recent go-IPFS version.
17
17
18
18
** Note** : This library occasionally has to change to stay compatible with the IPFS HTTP API.
19
- Currently, this library is tested against [ go-ipfs v0.6 .0] ( https://github.com/ipfs/go-ipfs/releases/tag/v0.6 .0 ) .
20
- We strive to support the last 5 releases of go-IPFS at any given time; go-IPFS v0.4.22 therefore
19
+ Currently, this library is tested against [ go-ipfs v0.7 .0] ( https://github.com/ipfs/go-ipfs/releases/tag/v0.7 .0 ) .
20
+ We strive to support the last 5 releases of go-IPFS at any given time; go-IPFS v0.4.23 therefore
21
21
being to oldest supported version at this time.
22
22
23
23
## Table of Contents
Original file line number Diff line number Diff line change 14
14
DEFAULT_ADDR = multiaddr .Multiaddr (os .environ .get ("PY_IPFS_HTTP_CLIENT_DEFAULT_ADDR" , '/dns/localhost/tcp/5001/http' ))
15
15
DEFAULT_BASE = str (os .environ .get ("PY_IPFS_HTTP_CLIENT_DEFAULT_BASE" , 'api/v0' ))
16
16
17
- VERSION_MINIMUM = "0.4.22 "
17
+ VERSION_MINIMUM = "0.4.23 "
18
18
VERSION_BLACKLIST = []
19
- VERSION_MAXIMUM = "0.7 .0"
19
+ VERSION_MAXIMUM = "0.8 .0"
20
20
21
21
from . import bitswap
22
22
from . import block
You can’t perform that action at this time.
0 commit comments