Skip to content
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
11 changes: 11 additions & 0 deletions hermes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## Unreleased

## [`v0.3.0`](https://github.com/ignite/apps/releases/tag/hermes/v0.3.0)

* [#199](https://github.com/ignite/apps/pull/199) Download hermes binary instead use `ignite-files` repo
* [#200](https://github.com/ignite/apps/pull/200) Add hermes global installation into the integration tests

## [`v0.2.8`](https://github.com/ignite/apps/releases/tag/hermes/v0.2.8)

* [#183](https://github.com/ignite/apps/pull/183) Downgrade hermes bin to v1.11
* [#181](https://github.com/ignite/apps/pull/181) Remove debug message
* [#180](https://github.com/ignite/apps/pull/180) Bump ignite for all apps

## [`v0.2.6`](https://github.com/ignite/apps/releases/tag/hermes/v0.2.6)

* [#164](https://github.com/ignite/apps/pull/164) `trust_threshold` is not aligned for latest hermes
Expand Down
2 changes: 1 addition & 1 deletion hermes/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ignite/apps/hermes

go 1.23.6
go 1.24.0

require (
github.com/blang/semver/v4 v4.0.0
Expand Down
9 changes: 4 additions & 5 deletions hermes/integration/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,16 +287,15 @@ func TestCustomIBCTx(t *testing.T) {
require.NoError(t, err)
pluginPath := filepath.Join(filepath.Dir(filepath.Dir(dir)), "hermes")

env.Must(env.Exec("install hermes app locally",
env.Must(env.Exec("install hermes locally",
step.NewSteps(step.New(
step.Exec(envtest.IgniteApp, "app", "install", pluginPath),
step.Exec(envtest.IgniteApp, "app", "install", "-g", pluginPath),
step.Workdir(app.SourcePath()),
)),
))

// One local plugin expected
assertLocalPlugins(t, app, []pluginsconfig.Plugin{{Path: pluginPath}})
assertGlobalPlugins(t, nil)
assertLocalPlugins(t, app, nil)
assertGlobalPlugins(t, []pluginsconfig.Plugin{{Path: pluginPath}})

// prepare the chain
env.Must(env.Exec("create an IBC module",
Expand Down
Loading