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:
5454 ### ==== MODIFY THIS WHEN CHANGING TARGET OR MINIMUM IPFS VERSION ==== ###
5555 case "${IPFS_VERSION:-latest}" in
5656 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
6161 ;;
6262 compat) # Earliest supported version
63- VERSION=0.4.22
64- SHA512_LINUX=49b99fec741d67f7bad8fb6fbbd984967f06dfc3de846d10dca34b166f621a182d12f13cf5ccf4e4f33747b67cede6f4205b4cd9b57ce5244128d1385ec82c85
63+ VERSION=0.4.23
64+ SHA512_LINUX=5eebebd4d4628a01c3b6615d96123a5c744f64da18fc0950e00d99a36abb02eee694c1bb67549341a645ebb99f30de9198c33b556cdee2609013409a510d1d2b
6565 ;;
6666 esac
6767 ### ------------------------------ 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
1616unmaintained and does not work with any recent go-IPFS version.
1717
1818** 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
2121being to oldest supported version at this time.
2222
2323## Table of Contents
Original file line number Diff line number Diff line change 1414DEFAULT_ADDR = multiaddr .Multiaddr (os .environ .get ("PY_IPFS_HTTP_CLIENT_DEFAULT_ADDR" , '/dns/localhost/tcp/5001/http' ))
1515DEFAULT_BASE = str (os .environ .get ("PY_IPFS_HTTP_CLIENT_DEFAULT_BASE" , 'api/v0' ))
1616
17- VERSION_MINIMUM = "0.4.22 "
17+ VERSION_MINIMUM = "0.4.23 "
1818VERSION_BLACKLIST = []
19- VERSION_MAXIMUM = "0.7 .0"
19+ VERSION_MAXIMUM = "0.8 .0"
2020
2121from . import bitswap
2222from . import block
You can’t perform that action at this time.
0 commit comments