Skip to content

Commit 28f757a

Browse files
damiannolancolin-axnerAdityaSripalcharleenfeichatton
authored
feat: channel upgradability (cosmos#1613)
Co-authored-by: Damian Nolan <[email protected]> Co-authored-by: colin axnér <[email protected]> Co-authored-by: Aditya Sripal <[email protected]> Co-authored-by: Charly <[email protected]> Co-authored-by: Cian Hatton <[email protected]> Co-authored-by: sangier <[email protected]> Co-authored-by: Jim Fasarakis-Hilliard <[email protected]> Co-authored-by: Carlos Rodriguez <[email protected]> Co-authored-by: Susannah Evans <[email protected]> Co-authored-by: srdtrk <[email protected]> Co-authored-by: Du Nguyen <[email protected]> Co-authored-by: Đỗ Việt Hoàng <[email protected]>
1 parent 6653205 commit 28f757a

File tree

114 files changed

+25797
-3464
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+25797
-3464
lines changed

.github/mergify.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ pull_request_rules:
1616
name: default
1717
method: squash
1818
commit_message_template: |
19-
{{ title }} (#{{ number }})
20-
{{ body }}
19+
{{ title }} (#{{ number }})
20+
{{ body }}
2121
- name: backport patches to v1.0.x capability branch
2222
conditions:
2323
- base=main
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# golangci-feature runs on pull requests from branches that do not target main.
2+
#
3+
# Working on feature branches (PRs where the PR base-ref != main) is a common
4+
# workflow used, in order to make the merging of PRs easier certain lints are excluded
5+
# when it makes sense. Currently, unused lints are excluded since many PRs will add
6+
# unused code that will be used in a later PR.
7+
name: golangci-lint feature branch
8+
on:
9+
pull_request:
10+
# Ignore if the target is main. (Negation of golanci-lint.yml)
11+
branches-ignore:
12+
- main
13+
permissions:
14+
contents: read
15+
# Optional: allow read access to pull request. Use with `only-new-issues` option.
16+
# pull-requests: read
17+
18+
jobs:
19+
golangci:
20+
name: lint
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/setup-go@v4
24+
with:
25+
go-version: '1.21'
26+
- uses: actions/checkout@v4
27+
- name: golangci-lint
28+
uses: golangci/[email protected]
29+
with:
30+
version: v1.54.2
31+
args: --timeout 10m

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This IBC implementation in Golang is built as a Cosmos SDK module. To understand
4141

4242
## Roadmap
4343

44-
For an overview of upcoming changes to ibc-go take a look at the [roadmap](./docs/docs/01-ibc/09-roadmap.md).
44+
For an overview of upcoming changes to ibc-go take a look at the [roadmap](./docs/docs/01-ibc/10-roadmap.md).
4545

4646
This roadmap is also available as a [project board](https://github.com/orgs/cosmos/projects/7/views/25).
4747

0 commit comments

Comments
 (0)