Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Feat/upgrade ignite to 0.27.2 #103

Merged
merged 3 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
if: ${{ steps.vars.outputs.should_release == 'true' }}
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21.3

- name: Issue Release Assets
if: ${{ steps.vars.outputs.should_release == 'true' }}
env:
CGO_ENABLED: 0
run: |
curl 'https://get.ignite.com/[email protected].1'! | bash
curl 'https://get.ignite.com/[email protected].2'! | bash
ignite chain build --release --release.prefix ${{ steps.vars.outputs.tarball_prefix }} -t linux:amd64 -t darwin:amd64 -t darwin:arm64

- name: Delete the "latest" Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:

env:
GO_VERSION: "1.20.2"
GO_VERSION: "1.21.3"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
**Mycel** is a Decentralized ID Infrastructure solution that resolves addresses such as websites, crypto wallets, IPFS, among many more accessible through a single domain with name resolution support in DNS, IBC and smart contracts.

## Dependencies
- Go `1.20.2`
- Ignite CLI `v0.27.1`
- Go `1.21.3`
- Ignite CLI `v0.27.2`
- Cosmos SDK `v0.47.3`

## Get started
Expand Down
2 changes: 1 addition & 1 deletion dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /build/
COPY ./ /build/
RUN apt update \
&& apt install -y curl
RUN curl 'https://get.ignite.com/[email protected].1'! | bash
RUN curl 'https://get.ignite.com/[email protected].2'! | bash
RUN ignite chain build \
--release.targets linux:amd64 \
--output ./release \
Expand Down
4 changes: 2 additions & 2 deletions dockerfile-build
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM --platform=linux ubuntu:22.04
ARG BUILDARCH

# Change your versions here
ENV GO_VERSION=1.19
ENV IGNITE_VERSION=0.27.1
ENV GO_VERSION=1.21
ENV IGNITE_VERSION=0.27.2
ENV NODE_VERSION=18.x

ENV LOCAL=/usr/local
Expand Down
2 changes: 1 addition & 1 deletion dockerfile-node
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /build/
COPY ./ /build/
RUN apt update \
&& apt install -y curl
RUN curl 'https://get.ignite.com/[email protected].1'! | bash
RUN curl 'https://get.ignite.com/[email protected].2'! | bash
RUN ignite chain build \
--release.targets linux:amd64 \
--release.targets linux:arm64 \
Expand Down
118 changes: 59 additions & 59 deletions docs/static/openapi.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mycel-domain/mycel

go 1.19
go 1.21

require (
cosmossdk.io/api v0.3.1
Expand Down
33 changes: 33 additions & 0 deletions go.sum

Large diffs are not rendered by default.

Loading