Skip to content

Commit ba334c1

Browse files
committed
Merge branch 'rc/v1.0.0-rc0' into feat/backport_rc7
* rc/v1.0.0-rc0: (26 commits) ci: add a ci to build darwin version when add tag (Finschia#180) chore: Release v1.0.0-rc7 (Finschia#179) Bump github.com/Finschia/finschia-sdk from v0.47.0-rc6 to v0.47.0-rc7 (Finschia#178) chore: Release v1.0.0-rc6 (Finschia#177) build: rename and bump up dependencies (Finschia#176) chore: bump up lbm-sdk from v0.47.0-rc5 to v0.47.0-rc5.0.20230414034539-489c442416cd (Finschia#174) chore: Release v1.0.0-rc5 (Finschia#173) Bump github.com/line/lbm-sdk from v0.47.0-rc4.0.20230410115856-b8421116b3f2 to v0.47.0-rc5 (Finschia#172) chore: apply wasmd v0.1.2 (Finschia#171) fix license copyright holder and typo (Finschia#170) Bump github.com/line/lbm-sdk from v0.47.0-rc4 to v0.47.0-rc4.0.20230410115856-b8421116b3f2 (Finschia#168) Bump up github.com/line/lbm-sdk from v0.47.0-rc3 to v0.47.0-rc4 (Finschia#167) chore: release v1.0.0-rc3 (Finschia#166) feat: bump up ibc-go v3.3.2 and wasmd for changing ibc light client of Ostracon to Tendermint (Finschia#164) chore: update license notice and code_of_conduct (Finschia#165) Bump github.com/line/lbm-sdk from v0.47.0-rc2 to v0.47.0-rc3 (Finschia#162) fix: fix `release-build` ci error occurred when adding assets after tagging (Finschia#163) chore: release v1.0.0-rc2 (Finschia#160) Bump github.com/line/lbm-sdk from v0.47.0-rc1 to v0.47.0-rc2 (Finschia#159) chore: update build args to arm64 (Finschia#157) ...
2 parents 05935ca + 69a291e commit ba334c1

Some content is hidden

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

85 files changed

+1618
-1396
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Bug Report
3+
about: Create a report to help us squash bugs!
4+
---
5+
6+
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺
7+
v ✰ Thanks for opening an issue! ✰
8+
v Before smashing the submit button please review the template
9+
v Please also ensure that this is not a duplicate issue :)
10+
☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -->
11+
12+
## Summary of Bug
13+
<!-- Concisely describe the issue -->
14+
15+
## Version
16+
<!-- git commit hash or release version -->
17+
18+
## Steps to Reproduce
19+
<!-- What commands in order should someone run to reproduce your problem? -->
20+
21+
____
22+
23+
## For Admin Use
24+
25+
- [ ] Not duplicate issue
26+
- [ ] Appropriate labels applied
27+
- [ ] Appropriate contributors tagged
28+
- [ ] Contributor assigned/self-assigned
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Feature Request
3+
about: Create a proposal to request a feature
4+
---
5+
6+
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺
7+
v ✰ Thanks for opening an issue! ✰
8+
v Before smashing the submit button please review the template.
9+
v Word of caution: poorly thought-out proposals may be rejected
10+
v without deliberation
11+
☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -->
12+
13+
## Summary
14+
<!-- Short, concise description of the proposed feature -->
15+
16+
## Problem Definition
17+
<!-- Why do we need this feature?
18+
What problems may be addressed by introducing this feature?
19+
What benefits does the SDK stand to gain by including this feature?
20+
Are there any disadvantages of including this feature? -->
21+
22+
## Proposal
23+
<!-- Detailed description of requirements of implementation -->
24+
25+
____
26+
27+
#### For Admin Use
28+
29+
- [ ] Not duplicate issue
30+
- [ ] Appropriate labels applied
31+
- [ ] Appropriate contributors tagged
32+
- [ ] Contributor assigned/self-assigned

.github/PULL_REQUEST_TEMPLATE.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!--- Provide a general summary of your changes in the Title above -->
2+
3+
## Description
4+
<!--- Describe your changes in detail -->
5+
closes: #XXXX
6+
7+
## Motivation and context
8+
<!--- Why is this change required? What problem does it solve? -->
9+
<!--- If it fixes an open issue, please link to the issue here. -->
10+
11+
## How has this been tested?
12+
<!--- Please describe in detail how you tested your changes. -->
13+
<!--- Include details of your testing environment, and the tests you ran to -->
14+
<!--- see how your change affects other areas of the code, etc. -->
15+
16+
## Screenshots (if appropriate):
17+
18+
## Checklist:
19+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
20+
<!--- If any of the checklist items are not applicable, leave it `[ ]` and write a little note why. --->
21+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
22+
- [ ] I followed the [contributing guidelines](https://github.com/Finschia/finschia/blob/main/CONTRIBUTING.md) and [code of conduct](https://github.com/Finschia/finschia/blob/main/CODE_OF_CONDUCT.md).
23+
- [ ] I have added a relevant changelog to `CHANGELOG.md`
24+
- [ ] I have added tests to cover my changes.
25+
- [ ] I have updated the documentation accordingly.

.github/workflows/autopr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- release/*
66
jobs:
77
create-pull-request:
8-
runs-on: self-hosted
8+
runs-on: ubuntu-latest
99
steps:
1010
- name: Check out repository code
1111
uses: actions/checkout@v3

.github/workflows/clean-artifacts.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
remove-old-artifacts:
10-
runs-on: self-hosted
10+
runs-on: ubuntu-latest
1111
timeout-minutes: 10
1212

1313
steps:

.github/workflows/docker.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Build & Push
2-
# Build & Push builds the lbm docker image on every tag push,
3-
# and pushes the image to https://docker-registry.linecorp.com/link-network/v2/lbm
2+
# Build & Push builds the finschia docker image on every tag push
3+
44
on:
55
pull_request:
66
branches:
@@ -12,10 +12,10 @@ on:
1212

1313
env:
1414
registry: docker.io
15-
repository: line/lbm
15+
repository: finschia/finschianode
1616
jobs:
1717
build:
18-
runs-on: self-hosted
18+
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v3
2121
with:
@@ -29,7 +29,6 @@ jobs:
2929
endpoint: buildx
3030
config-inline: |
3131
[registry."docker.io"]
32-
mirrors = ["docker-hub-mirror.linecorp.com"]
3332
- name: login to the registry
3433
uses: docker/login-action@v2
3534
if: github.event_name != 'pull_request'

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
golangci:
1212
name: golangci-lint
13-
runs-on: self-hosted
13+
runs-on: ubuntu-latest
1414
timeout-minutes: 6
1515
steps:
1616
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)