-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for optional pin names introduced by kubo 0.26
* Support for passing pin names via "pin add" * Support for listing pin names with "pin ls" using the "names" boolean * Add a unit test for pin names * CI: Test kubo 0.26 * docs: util.car_bytes() must receive the CID of a UnixFS file [pypi] revbump to 0.6.6
- Loading branch information
cipres
authored and
cipres
committed
Jan 31, 2024
1 parent
2d9cfba
commit a937cfe
Showing
8 changed files
with
58 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,23 +32,23 @@ jobs: | |
if: startsWith(matrix.os, 'windows') | ||
with: | ||
name: ipfs.exe | ||
url: "https://dist.ipfs.tech/kubo/v0.24.0/kubo_v0.24.0_windows-amd64.zip" | ||
url: "https://dist.ipfs.tech/kubo/v0.26.0/kubo_v0.26.0_windows-amd64.zip" | ||
pathInArchive: "kubo/ipfs.exe" | ||
|
||
- name: Fetch kubo (linux) | ||
uses: engineerd/[email protected] | ||
if: startsWith(matrix.os, 'ubuntu') | ||
with: | ||
name: ipfs | ||
url: "https://dist.ipfs.tech/kubo/v0.24.0/kubo_v0.24.0_linux-amd64.tar.gz" | ||
url: "https://dist.ipfs.tech/kubo/v0.26.0/kubo_v0.26.0_linux-amd64.tar.gz" | ||
pathInArchive: "kubo/ipfs" | ||
|
||
- name: Fetch kubo (macos) | ||
uses: engineerd/[email protected] | ||
if: startsWith(matrix.os, 'macos') | ||
with: | ||
name: ipfs | ||
url: "https://dist.ipfs.tech/kubo/v0.24.0/kubo_v0.24.0_darwin-amd64.tar.gz" | ||
url: "https://dist.ipfs.tech/kubo/v0.26.0/kubo_v0.26.0_darwin-amd64.tar.gz" | ||
pathInArchive: "kubo/ipfs" | ||
|
||
- name: Test with pytest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,8 @@ variables: | |
kubo-0.21.0, | ||
kubo-0.22.0, | ||
kubo-0.23.0, | ||
kubo-0.24.0 | ||
kubo-0.24.0, | ||
kubo-0.26.0 | ||
] | ||
|
||
script: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '0.6.5' | ||
__version__ = '0.6.6' | ||
|
||
from yarl import URL | ||
from distutils.version import StrictVersion | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters