Skip to content

Commit

Permalink
Bump version to 0.1.6 and match Kubo 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bahner committed Oct 11, 2023
1 parent a29a370 commit a64a95b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/testsuite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
strategy:
fail-fast: true
matrix:
otp: ["25"]
elixir: ["1.14", "1.15"]
otp: ["25.1.2"]
elixir: ["1.14.3", "1.15.2"]
services:
ipfs:
image: ipfs/kubo:latest
image: ipfs/kubo:v0.23.0
ports:
- 5001:5001
steps:
Expand Down Expand Up @@ -70,11 +70,11 @@ jobs:
strategy:
fail-fast: true
matrix:
otp: ["26"]
elixir: ["1.15"]
otp: ["26.0.2"]
elixir: ["1.15.2"]
services:
ipfs:
image: ipfs/kubo:latest
image: ipfs/kubo:v0.23.0
ports:
- 5001:5001
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NB! This file is generated from templates/Dockerfile.
# Make sure to make change to the template, not
# the in situ file.
FROM ipfs/kubo:v0.21.0
FROM ipfs/kubo:v0.23.0
LABEL org.opencontainers.image.authors: "Lars Bahner <[email protected]>"

CMD ["daemon", "--migrate=true", "--agent-version-suffix=docker", "--enable-pubsub-experiment", "--enable-namesys-pubsub", "--enable-mplex-experiment"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
VERSION ?= $(shell cat mix.exs | grep version | sed -e 's/.*version: "\(.*\)",/\1/')

# Exporting the config values allows us to generate Dockerfile and github config using envsubst.
export KUBO_VERSION ?= v0.21.0
export KUBO_VERSION ?= v0.23.0
export DOCKER_USER ?= ipfs
export DOCKER_IMAGE ?= $(DOCKER_USER)/kubo:$(KUBO_VERSION)

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule ExIpfs.Mixfile do
def project do
[
app: :ex_ipfs,
version: "0.1.5",
version: "0.1.6",
elixir: "~> 1.14",
name: "Elixir IPFS",
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit a64a95b

Please sign in to comment.