Skip to content

Commit f17cb96

Browse files
authored
chore: polish Changelog, Contributing Guide and add Codeowners. (#155)
1 parent 1e9baff commit f17cb96

3 files changed

Lines changed: 19 additions & 3 deletions

File tree

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://help.github.com/articles/about-codeowners
2+
3+
* @mbreithecker @yjamin @troykessler

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,18 @@ An '!' indicates a state machine breaking change.
1616

1717
## Unreleased
1818

19+
### Features
20+
21+
- ! [#135](https://github.com/bcp-innovations/hyperlane-cosmos/pull/135) Allow authority to create native synthetic tokens.
22+
1923
### Bug Fixes
2024

21-
- [#153](https://github.com/bcp-innovations/hyperlane-cosmos/pull/153) Fix SetDomain for RoutingISM.
25+
- ! [#148](https://github.com/bcp-innovations/hyperlane-cosmos/pull/148) Fix Amino name typos in warp.
26+
- ! [#153](https://github.com/bcp-innovations/hyperlane-cosmos/pull/153) Fix SetDomain for RoutingISM.
27+
- ! [#123](https://github.com/bcp-innovations/hyperlane-cosmos/pull/123) Fix Amino name typos in core.
28+
- ! [#143](https://github.com/bcp-innovations/hyperlane-cosmos/pull/143) Allow IGP to charge zero fees.
29+
- ! [#151](https://github.com/bcp-innovations/hyperlane-cosmos/pull/151) Support 32 byte addresses in remote recv collateral.
30+
- ! [#141](https://github.com/bcp-innovations/hyperlane-cosmos/pull/141) Corrected coin comparison.
2231

2332
## [v1.0.1](https://github.com/bcp-innovations/hyperlane-cosmos/releases/tag/v1.0.1) - 2025-06-05
2433

CONTRIBUTING.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Cosmos-SDK principles and design architectures.
1313

1414
## Creating a Pull Request
1515

16-
- Check out the latest state from main and always keep the PR in sync with main.
16+
- Check out the latest state from `main` and always keep the PR in sync with `main`.
1717
- Use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/#specification).
1818
- Only one feature per pull request.
1919
- Write an entry for the Changelog.
@@ -23,7 +23,7 @@ Cosmos-SDK principles and design architectures.
2323
## Coding Guidelines
2424

2525
- Write readable and maintainable code. `Premature Optimization Is the Root of All Evil`.
26-
Concentrate on clean interfaces first and only optimize for performance if it is needed.
26+
Concentrate on clean interfaces first and only optimize for performance if it is necessary.
2727
- The keeper directory is structured the following:
2828
- `msg_server_*`-files are the entry point for message handling. This file
2929
should be very clean to read and outsource most of the part to the logic files.
@@ -32,6 +32,10 @@ Cosmos-SDK principles and design architectures.
3232
- `query_server_*`-files are the entry point for query handling. This file
3333
should be very clean to read. Most queries can make use of the pagination
3434
provided in `./util`.
35+
- AI Usage: AI can significantly speed up development, but you are responsible
36+
for the code you submit. Before opening a PR, thoroughly review all changes.
37+
Do not submit PRs containing code you haven’t personally reviewed,
38+
as this creates an unnecessary burden for reviewers.
3539

3640
## Code Structure
3741

0 commit comments

Comments
 (0)