From bf3a04a4991355d394751d46f1aaa39376d1109b Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Wed, 11 May 2022 22:09:15 +0200 Subject: [PATCH 01/12] chore: test ipfs-banana build just seeing if we can build go-ipfs under different name: when we rename, we want to have backward-compatible go-ipfs build so everything that was created in the past 7 years and expects 'go-ipfs' will continue working. --- dists/ipfs-banana/Makefile | 4 ++++ dists/ipfs-banana/build_matrix | 14 ++++++++++++++ dists/ipfs-banana/current | 1 + dists/ipfs-banana/description | 1 + dists/ipfs-banana/repo-name | 1 + dists/ipfs-banana/repo-owner | 1 + dists/ipfs-banana/versions | 1 + 7 files changed, 23 insertions(+) create mode 100644 dists/ipfs-banana/Makefile create mode 100644 dists/ipfs-banana/build_matrix create mode 100644 dists/ipfs-banana/current create mode 100644 dists/ipfs-banana/description create mode 100644 dists/ipfs-banana/repo-name create mode 100644 dists/ipfs-banana/repo-owner create mode 100644 dists/ipfs-banana/versions diff --git a/dists/ipfs-banana/Makefile b/dists/ipfs-banana/Makefile new file mode 100644 index 00000000..4d21648c --- /dev/null +++ b/dists/ipfs-banana/Makefile @@ -0,0 +1,4 @@ +repo = github.com/ipfs/go-ipfs +package = cmd/ipfs + +include ../../common.mk diff --git a/dists/ipfs-banana/build_matrix b/dists/ipfs-banana/build_matrix new file mode 100644 index 00000000..c562e61b --- /dev/null +++ b/dists/ipfs-banana/build_matrix @@ -0,0 +1,14 @@ +darwin amd64 +darwin arm64 +freebsd 386 +freebsd amd64 +freebsd arm +openbsd 386 +openbsd amd64 +openbsd arm +linux 386 +linux amd64 +linux arm +linux arm64 +windows 386 +windows amd64 diff --git a/dists/ipfs-banana/current b/dists/ipfs-banana/current new file mode 100644 index 00000000..97595bee --- /dev/null +++ b/dists/ipfs-banana/current @@ -0,0 +1 @@ +v0.13.0-rc1 diff --git a/dists/ipfs-banana/description b/dists/ipfs-banana/description new file mode 100644 index 00000000..1fdb9ae6 --- /dev/null +++ b/dists/ipfs-banana/description @@ -0,0 +1 @@ +ipfs-banana is the oldest (but not the only one!) implementation of IPFS. It includes:\n- an IPFS core implementation\n- an IPFS daemon server\n- extensive command line tooling\n- an HTTP RPC API for controlling the node\n- an HTTP Gateway for serving content to HTTP browsers\n diff --git a/dists/ipfs-banana/repo-name b/dists/ipfs-banana/repo-name new file mode 100644 index 00000000..f0232436 --- /dev/null +++ b/dists/ipfs-banana/repo-name @@ -0,0 +1 @@ +go-ipfs diff --git a/dists/ipfs-banana/repo-owner b/dists/ipfs-banana/repo-owner new file mode 100644 index 00000000..1670fe3c --- /dev/null +++ b/dists/ipfs-banana/repo-owner @@ -0,0 +1 @@ +ipfs diff --git a/dists/ipfs-banana/versions b/dists/ipfs-banana/versions new file mode 100644 index 00000000..97595bee --- /dev/null +++ b/dists/ipfs-banana/versions @@ -0,0 +1 @@ +v0.13.0-rc1 From 3cecc57f682bea6777197d09e478c15cb9723150 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Sun, 26 Jun 2022 01:42:35 +0200 Subject: [PATCH 02/12] feat: hide go-ipfs, show kubo --- site/config.toml | 2 +- site/layouts/_default/single.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/site/config.toml b/site/config.toml index cd1cc5b5..3de33809 100644 --- a/site/config.toml +++ b/site/config.toml @@ -7,7 +7,7 @@ title = "IPFS Distributions" taxonomies = {} [params] -hiddenDists = ['gx', 'gx-go'] +hiddenDists = ['go-ipfs', 'gx', 'gx-go'] newGoIpfsName = 'kubo' [params.targetMap] diff --git a/site/layouts/_default/single.html b/site/layouts/_default/single.html index a1a534ce..3ddb12e8 100644 --- a/site/layouts/_default/single.html +++ b/site/layouts/_default/single.html @@ -40,11 +40,11 @@
{{ range $key, $value := $.Site.Data.releases }}{{ if not (in $.Site.Params.hiddenDists $key) }} {{ $data := $value.data }} - {{ if eq "go-ipfs" $key }}
{{ end }} + {{ if eq $.Site.Params.newGoIpfsName $key }}
{{ end }}
-

{{ if eq "go-ipfs" $key }}{{ $.Site.Params.newGoIpfsName }} (old name: {{ $key }}){{ else }}{{ $key }}{{ end }}

+

{{ $key }}{{ if eq $.Site.Params.newGoIpfsName $key }}(old name: go-ipfs){{ end }}

{{ $data.tagline }}

{{ $data.description | markdownify }}
From 2201f13d177c67148f815c6dc5ca7ad9d9497af0 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Sun, 19 Jun 2022 23:52:22 +0200 Subject: [PATCH 03/12] refactor: rename to kubo --- dists/ipfs-banana/current | 1 - dists/ipfs-banana/description | 1 - dists/ipfs-banana/versions | 1 - dists/{ipfs-banana => kubo}/Makefile | 0 dists/{ipfs-banana => kubo}/build_matrix | 0 dists/kubo/current | 1 + dists/kubo/description | 1 + dists/{ipfs-banana => kubo}/repo-name | 0 dists/{ipfs-banana => kubo}/repo-owner | 0 dists/kubo/versions | 1 + 10 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 dists/ipfs-banana/current delete mode 100644 dists/ipfs-banana/description delete mode 100644 dists/ipfs-banana/versions rename dists/{ipfs-banana => kubo}/Makefile (100%) rename dists/{ipfs-banana => kubo}/build_matrix (100%) create mode 100644 dists/kubo/current create mode 100644 dists/kubo/description rename dists/{ipfs-banana => kubo}/repo-name (100%) rename dists/{ipfs-banana => kubo}/repo-owner (100%) create mode 100644 dists/kubo/versions diff --git a/dists/ipfs-banana/current b/dists/ipfs-banana/current deleted file mode 100644 index 97595bee..00000000 --- a/dists/ipfs-banana/current +++ /dev/null @@ -1 +0,0 @@ -v0.13.0-rc1 diff --git a/dists/ipfs-banana/description b/dists/ipfs-banana/description deleted file mode 100644 index 1fdb9ae6..00000000 --- a/dists/ipfs-banana/description +++ /dev/null @@ -1 +0,0 @@ -ipfs-banana is the oldest (but not the only one!) implementation of IPFS. It includes:\n- an IPFS core implementation\n- an IPFS daemon server\n- extensive command line tooling\n- an HTTP RPC API for controlling the node\n- an HTTP Gateway for serving content to HTTP browsers\n diff --git a/dists/ipfs-banana/versions b/dists/ipfs-banana/versions deleted file mode 100644 index 97595bee..00000000 --- a/dists/ipfs-banana/versions +++ /dev/null @@ -1 +0,0 @@ -v0.13.0-rc1 diff --git a/dists/ipfs-banana/Makefile b/dists/kubo/Makefile similarity index 100% rename from dists/ipfs-banana/Makefile rename to dists/kubo/Makefile diff --git a/dists/ipfs-banana/build_matrix b/dists/kubo/build_matrix similarity index 100% rename from dists/ipfs-banana/build_matrix rename to dists/kubo/build_matrix diff --git a/dists/kubo/current b/dists/kubo/current new file mode 100644 index 00000000..6345c216 --- /dev/null +++ b/dists/kubo/current @@ -0,0 +1 @@ +v0.13.0 diff --git a/dists/kubo/description b/dists/kubo/description new file mode 100644 index 00000000..5c389d7b --- /dev/null +++ b/dists/kubo/description @@ -0,0 +1 @@ +kubo is the oldest (but not the only one!) implementation of IPFS. It includes:\n- an IPFS core implementation\n- an IPFS daemon server\n- extensive command line tooling\n- an HTTP RPC API for controlling the node\n- an HTTP Gateway for serving content to HTTP browsers\n diff --git a/dists/ipfs-banana/repo-name b/dists/kubo/repo-name similarity index 100% rename from dists/ipfs-banana/repo-name rename to dists/kubo/repo-name diff --git a/dists/ipfs-banana/repo-owner b/dists/kubo/repo-owner similarity index 100% rename from dists/ipfs-banana/repo-owner rename to dists/kubo/repo-owner diff --git a/dists/kubo/versions b/dists/kubo/versions new file mode 100644 index 00000000..6345c216 --- /dev/null +++ b/dists/kubo/versions @@ -0,0 +1 @@ +v0.13.0 From 574df6f421977a7a4d7c2b3edaa35c43d72adcd3 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Thu, 30 Jun 2022 14:07:48 +0200 Subject: [PATCH 04/12] fix: add go-ipfs on ./dist add-version kubo This will automatically add any new kubo version to go-ipfs, ensuring people following old name will still get informed about new releases. --- dist.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dist.sh b/dist.sh index fed6ba38..b785c248 100755 --- a/dist.sh +++ b/dist.sh @@ -80,6 +80,15 @@ case $1 in echo "$nvers" >> "dists/$dist/versions" + # legacy go-ipfs dist needs to be created for every new kubo release: + # https://github.com/ipfs/distributions/pull/717 + if [ "$dist" == "kubo" ]; then + # make sure latest go-ipfs release follows kubo + cat "dists/kubo/current" > "dists/go-ipfs/current" + # make sure go-ipfs has all new kubo releases (one directional sync) + diff "dists/kubo/versions" "dists/go-ipfs/versions" | grep '^<' | awk '{print $2}' | uniq >> "dists/go-ipfs/versions" + fi + # cd "dists/$dist" && make update_sources # build-go will update sources as needed cd "dists/$dist" && make From dd51ab57deb1cd9055e871f449bbfe1676d2fcb8 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Thu, 30 Jun 2022 14:15:08 +0200 Subject: [PATCH 05/12] chore: sync kubo description --- dists/kubo/description | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dists/kubo/description b/dists/kubo/description index 5c389d7b..5df2091c 100644 --- a/dists/kubo/description +++ b/dists/kubo/description @@ -1 +1 @@ -kubo is the oldest (but not the only one!) implementation of IPFS. It includes:\n- an IPFS core implementation\n- an IPFS daemon server\n- extensive command line tooling\n- an HTTP RPC API for controlling the node\n- an HTTP Gateway for serving content to HTTP browsers\n +kubo (go-ipfs) is the earliest and most widely used implementation of IPFS. It includes:\n- an IPFS daemon server\n- extensive command line tooling\n- an HTTP RPC API for controlling the node\n- an HTTP Gateway for serving content to HTTP browsers\n From 2de1e48643bf38dd5c695f2352886dbcb22509bb Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Thu, 30 Jun 2022 17:56:12 +0200 Subject: [PATCH 06/12] fix: error on old kubo name --- dist.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dist.sh b/dist.sh index b785c248..6727ac6c 100755 --- a/dist.sh +++ b/dist.sh @@ -89,6 +89,16 @@ case $1 in diff "dists/kubo/versions" "dists/go-ipfs/versions" | grep '^<' | awk '{print $2}' | uniq >> "dists/go-ipfs/versions" fi + # error on old kubo name + if [ "$dist" == "go-ipfs" ]; then + echo "ERROR: go-ipfs is now named kubo, use the new name:" + echo + echo "$ dist.sh add-version kubo " + echo + echo "(a backward-compatible go-ipfs release will be added automatically)" + exit 1 + fi + # cd "dists/$dist" && make update_sources # build-go will update sources as needed cd "dists/$dist" && make @@ -101,3 +111,4 @@ case $1 in exit 1 ;; esac +## vim: sts=4:ts=4:sw=4:noet From a17c51b5740ab27d2ce2fe922deeafd70dcc0981 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Fri, 1 Jul 2022 01:02:19 +0200 Subject: [PATCH 07/12] feat: avoid dual build, repackage kubo as go-ipfs See comments at the top of dists/go-ipfs/build-from-kubo.sh --- Makefile | 5 +- build-go.sh | 14 ++--- dist.sh | 6 ++- dists/go-ipfs/Makefile | 5 ++ dists/go-ipfs/build-from-kubo.sh | 92 ++++++++++++++++++++++++++++++++ 5 files changed, 114 insertions(+), 8 deletions(-) create mode 100755 dists/go-ipfs/build-from-kubo.sh diff --git a/Makefile b/Makefile index 5cc00b05..00b80dd3 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,10 @@ export NODE_OPTIONS="--unhandled-rejections=strict" all: deps releases all_dists site -DISTS = $(notdir $(wildcard dists/*)) +# DISTS are sorted in reverse lex order +# because 'kubo' MUST build before 'go-ipfs' +reverse = $(if $1,$(call reverse,$(wordlist 2,999999,$1)) $(firstword $1)) +DISTS = $(call reverse,$(sort $(notdir $(wildcard dists/*)))) NIGHTLY_IGNORED := $(shell cat ignored-during-nightly) DISTS_FILTERED = $(filter-out $(NIGHTLY_IGNORED),$(DISTS)) diff --git a/build-go.sh b/build-go.sh index e26fa377..b1f703b1 100755 --- a/build-go.sh +++ b/build-go.sh @@ -46,7 +46,7 @@ function notice() { } # dep checks -reqbins="jq zip tar go npm" +reqbins="jq zip unzip tar go npm" for b in $reqbins do if ! type "$b" > /dev/null; then @@ -141,12 +141,10 @@ function doBuild() { if ! (cd "$build_dir_name" && goBuild "$package" "$goos" "$goarch") > build-log; then local logfi="$dir/build-log-$goos-$goarch" cp "$build_dir_name/build-log" "$logfi" - warn " failed. logfile at '$logfi'" + warn " $binname failed. logfile at '$logfi'" return 1 fi - notice " $goos $goarch build succeeded!" - # copy dist assets if they exist if [ -e "$GOPATH/src/$package/dist" ]; then cp -r "$GOPATH/src/$package/dist/"* "$build_dir_name/" @@ -156,8 +154,9 @@ function doBuild() { if bundleDist "$dir/$binname" "$goos" "$build_dir_name"; then buildDistInfo "$binname" "$dir" rm -rf "$build_dir_name" + notice " build $binname succeeded!" else - warn " failed to zip up output" + warn " failed to build $binname" success=1 fi @@ -454,6 +453,9 @@ function startGoBuilds() { notice "build complete!" } +# Execute only when called directly (allows for sourcing) +if [ "${BASH_SOURCE[0]}" -ef "$0" ]; then startGoBuilds "$1" "$2" "$3" "$4" "$5" +fi -# vim: noet +# vim: ts=4:noet diff --git a/dist.sh b/dist.sh index 6727ac6c..05df1af0 100755 --- a/dist.sh +++ b/dist.sh @@ -83,10 +83,14 @@ case $1 in # legacy go-ipfs dist needs to be created for every new kubo release: # https://github.com/ipfs/distributions/pull/717 if [ "$dist" == "kubo" ]; then + # use the same targets + cat "dists/kubo/build_matrix" > "dists/go-ipfs/build_matrix" # make sure latest go-ipfs release follows kubo cat "dists/kubo/current" > "dists/go-ipfs/current" # make sure go-ipfs has all new kubo releases (one directional sync) - diff "dists/kubo/versions" "dists/go-ipfs/versions" | grep '^<' | awk '{print $2}' | uniq >> "dists/go-ipfs/versions" + newreleases="$(mktemp)" + diff "dists/kubo/versions" "dists/go-ipfs/versions" | grep '^<' | awk '{print $2}' | uniq > "$newreleases" + cat "$newreleases" >> "dists/go-ipfs/versions" fi # error on old kubo name diff --git a/dists/go-ipfs/Makefile b/dists/go-ipfs/Makefile index 4d21648c..eca16812 100644 --- a/dists/go-ipfs/Makefile +++ b/dists/go-ipfs/Makefile @@ -2,3 +2,8 @@ repo = github.com/ipfs/go-ipfs package = cmd/ipfs include ../../common.mk + +# we override dist recipe for go-ipfs to avoid bulding kubo binaries for the second time. +# instead, we repackage existing kubo artifacts under the legacy go-ipfs name +dist: + ${relpath}/dists/go-ipfs/build-from-kubo.sh "${relpath}" "${distname}" "${repo}" "${package}" "${versions}" diff --git a/dists/go-ipfs/build-from-kubo.sh b/dists/go-ipfs/build-from-kubo.sh new file mode 100755 index 00000000..80ff0cfe --- /dev/null +++ b/dists/go-ipfs/build-from-kubo.sh @@ -0,0 +1,92 @@ +#!/bin/bash + +set -eo pipefail + +# This script replaces go build with repackaging of existing 'kubo' binaries +# - go-ipfs is the old name of kubo, and we provide it for legacy reasons +# - this script assumes kubo artifacts were built recently and are still +# in local "releases/kubo/${version}" - this is ok because nobody will build +# go-ipfs on their own, only kubo, and go-ipfs build happens automatically +# when someone adds new kubo release with './dist add-release kubo ' + +# Usage in Makefile is drop-in replacement for build-go.sh: +# build-from-kubo.sh "${relpath}" "${distname}" "${repo}" "${package}" "${versions}" + +# path to the root of ipfs/distributions repo +rootpath="$(realpath "$1")" + +distname="$2" +repo="$3" +package="$4" +versions="$5" + +# import utility functions and variables from regular go build script +source "${rootpath}/build-go.sh" + +# override build step. +# goBuild is skipped and we replaced it with repackaging of existing kubo artifacts +# this way we build everything only once +function doBuild() { + local goos=$1 + local goarch=$2 + local package=$3 + local output=$4 + local version=$5 + + local dir name binname + + dir="$output" + name="$(basename "$(pwd)")" + binname="${name}_${version}_${goos}-${goarch}" + + # local dir with just recently built kubo release + # that will be repackaged under go-ipfs name + kuboreleasedir="${rootpath}/releases/kubo/${version}" + kubobinname="kubo_${version}_${goos}-${goarch}" + + echo "==> repackaging kubo to go-ipfs for $goos $goarch" + + if [ -e "$dir/$binname" ]; then + echo " $dir/$binname exists, skipping build" + return + fi + echo " output to $dir/$binname" + + local build_dir_name=$name + mkdir -p "$dir" + + # unpack kubo package (it produces 'kubo/ipfs[.exe]') + case $(pkgType "$goos") in + zip) + unzip -oq "${kuboreleasedir}/${kubobinname}.zip" + ;; + tar.gz) + tar xf "${kuboreleasedir}/${kubobinname}.tar.gz" + ;; + esac + + # remove any stale unpacked data + rm -rf "$build_dir_name" + + # rename extracted directory to match name expected by build scripts (go-ipfs) + mv "kubo" "$build_dir_name" + + # now (re)package it all up + if bundleDist "$dir/$binname" "$goos" "$build_dir_name"; then + buildDistInfo "$binname" "$dir" + rm -rf "$build_dir_name" + notice " repackaging of $binname succeeded!" + else + fail " failed to repackage $binname" + success=1 + fi + + notice " $goos $goarch repackaging succeeded!" + + # output results to results table + echo "$target, $goos, $goarch, $success" >> "$output/results" +} + +# run unmodified logic from build-go.sh +startGoBuilds "${distname}" "${repo}" "${package}" "${versions}" +# vim: ts=4:noet From 8316fb9ea0bc791f8f016f52db5c8d94fbfa0ee5 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Fri, 1 Jul 2022 14:53:37 +0200 Subject: [PATCH 08/12] fix: ignore go-ipfs during nightly we only need kubo to build --- ignored-during-nightly | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ignored-during-nightly b/ignored-during-nightly index 5e28fbd2..8fb2a1a3 100644 --- a/ignored-during-nightly +++ b/ignored-during-nightly @@ -7,4 +7,5 @@ fs-repo-5-to-6 fs-repo-6-to-7 fs-repo-7-to-8 fs-repo-8-to-9 -fs-repo-9-to-10 \ No newline at end of file +fs-repo-9-to-10 +go-ipfs From 005dc31e11b9c46e6402f0fc667de9e821d78429 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Fri, 1 Jul 2022 15:27:49 +0200 Subject: [PATCH 09/12] fix: kubo (go-ipfs) on the website --- site/layouts/_default/single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/layouts/_default/single.html b/site/layouts/_default/single.html index 3ddb12e8..05060aa6 100644 --- a/site/layouts/_default/single.html +++ b/site/layouts/_default/single.html @@ -31,7 +31,7 @@ {{ range $key, $value := $.Site.Data.releases }}{{ if not (in $.Site.Params.hiddenDists $key) }} {{ end }}{{ end }} @@ -44,7 +44,7 @@
-

{{ $key }}{{ if eq $.Site.Params.newGoIpfsName $key }}(old name: go-ipfs){{ end }}

+

{{ $key }}{{ if eq $.Site.Params.newGoIpfsName $key }} (go-ipfs){{ end }}

{{ $data.tagline }}

{{ $data.description | markdownify }}
From 882edf395b92357d40a7131830b3b1590c65fc8e Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Wed, 6 Jul 2022 20:01:30 +0200 Subject: [PATCH 10/12] chore: git repo rename to kubo --- dists/kubo/Makefile | 2 +- dists/kubo/repo-name | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dists/kubo/Makefile b/dists/kubo/Makefile index 4d21648c..52f1c183 100644 --- a/dists/kubo/Makefile +++ b/dists/kubo/Makefile @@ -1,4 +1,4 @@ -repo = github.com/ipfs/go-ipfs +repo = github.com/ipfs/kubo package = cmd/ipfs include ../../common.mk diff --git a/dists/kubo/repo-name b/dists/kubo/repo-name index f0232436..24875b3a 100644 --- a/dists/kubo/repo-name +++ b/dists/kubo/repo-name @@ -1 +1 @@ -go-ipfs +kubo From 7a40e8dd59a9447b2810d78d5e512a5b134ae83b Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Wed, 6 Jul 2022 21:02:13 +0200 Subject: [PATCH 11/12] chore: kubo v0.14.0-rc1 --- dists/kubo/current | 2 +- dists/kubo/versions | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dists/kubo/current b/dists/kubo/current index 6345c216..6b390b86 100644 --- a/dists/kubo/current +++ b/dists/kubo/current @@ -1 +1 @@ -v0.13.0 +v0.14.0-rc1 diff --git a/dists/kubo/versions b/dists/kubo/versions index 6345c216..6b390b86 100644 --- a/dists/kubo/versions +++ b/dists/kubo/versions @@ -1 +1 @@ -v0.13.0 +v0.14.0-rc1 From 93b30645b782bb6911b611e2efd95f5f1ac842cf Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Fri, 8 Jul 2022 00:39:07 +0200 Subject: [PATCH 12/12] chore: go-ipfs v0.14.0-rc1 This time needs to be added manually, I forgot to include it in previous commit. --- dists/go-ipfs/versions | 1 + 1 file changed, 1 insertion(+) diff --git a/dists/go-ipfs/versions b/dists/go-ipfs/versions index cbbc4b96..9afebd95 100644 --- a/dists/go-ipfs/versions +++ b/dists/go-ipfs/versions @@ -68,3 +68,4 @@ v0.12.2 v0.13.0-rc1 v0.13.0 v0.13.1 +v0.14.0-rc1