Skip to content

Commit

Permalink
chore(lib/buildinfo): release branch (#1551)
Browse files Browse the repository at this point in the history
Bumps the release branch version to v0.2.0

issue: none
  • Loading branch information
corverroos committed Jul 23, 2024
1 parent cb1a2f3 commit 6270734
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: ci main
# continuous integration on push to main
# continuous integration on push to main and release branches

on:
push:
branches:
- main
- release*

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: ci notify
on:
workflow_run:
workflows: ["*"]
branches: [main]
branches: [main,release*]
types: [completed]

jobs:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: ci pr
# continuous integration on pull requests to main
# continuous integration on pull requests to main and release branches

on:
pull_request:
branches:
- main
- release*

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion e2e/manifests/omega.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ public_chains = ["holesky","op_sepolia", "base_sepolia","arb_sepolia"]

multi_omni_evms = true
prometheus = true
pinned_halo_tag = "1734918"
pinned_halo_tag = "v0.2.0"

[node.validator01]
[node.validator02]
Expand Down
2 changes: 1 addition & 1 deletion halo/config/testdata/default_halo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# The version of the Halo binary that created or
# last modified the config file. Do not modify this.
version = "v0.1.10"
version = "v0.2.0"

# Omni network to participate in: mainnet, testnet, or devnet.
network = ""
Expand Down
2 changes: 1 addition & 1 deletion halo/genutil/testdata/TestMakeGenesis.golden
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"app_name": "halo",
"app_version": "v0.1.10",
"app_version": "v0.2.0",
"genesis_time": "1970-01-01T00:00:01Z",
"chain_id": "omni-1001651",
"initial_height": 1,
Expand Down
2 changes: 1 addition & 1 deletion lib/buildinfo/buildinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

// version of the whole omni-monorepo and all binaries built from this git commit.
// This value is set by goreleaser at build-time and should be the git tag for official releases.
var version = "v0.1.10"
var version = "v0.2.0"

// unknown is the default value for the git commit hash and timestamp.
const unknown = "unknown"
Expand Down
2 changes: 1 addition & 1 deletion monitor/app/testdata/default_monitor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# The version of the Halo binary that created or
# last modified the config file. Do not modify this.
version = "v0.1.10"
version = "v0.2.0"

# Omni network to participate in: mainnet, testnet, or devnet.
network = ""
Expand Down
2 changes: 1 addition & 1 deletion relayer/app/testdata/default_relayer.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# The version of the Halo binary that created or
# last modified the config file. Do not modify this.
version = "v0.1.10"
version = "v0.2.0"

# Omni network to participate in: mainnet, testnet, or devnet.
network = ""
Expand Down

0 comments on commit 6270734

Please sign in to comment.