Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(lib/buildinfo): release branch #1551

Merged
merged 1 commit into from
Jul 23, 2024
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
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"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will only be valid once this PR is merged and we added the tag.


[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