-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #160 from informalsystems/main
Merge main into release/v1.x
- Loading branch information
Showing
52 changed files
with
1,206 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# CHANGELOG | ||
|
||
# v1.0.0 | ||
|
||
Date: September 24th, 2023 | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Date: October 15th, 2024 | ||
<!-- | ||
Add a summary for the release here. | ||
If you don't change this message, or if this file is empty, the release | ||
will not be created. --> |
2 changes: 2 additions & 0 deletions
2
.changelog/v1.1.0/features/146-adjust-tribute-refunding-condition.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Adjust tribute refunding condition. | ||
([\#146](https://github.com/informalsystems/hydro/pull/146)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v1.1.0/features/149-allow-refreshing-multiple-locks.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Allow refreshing multiple locks at once | ||
([\#149](https://github.com/informalsystems/hydro/pull/149)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Adds a migration to change the start of the first contract on an instantiated contract | ||
([\#156](https://github.com/informalsystems/hydro/pull/156)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Date: October 22nd, 2024 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## Description | ||
|
||
Closes: *#XXXX* | ||
|
||
*Add a description of the changes that this PR introduces and the files that | ||
are the most critical to review.* | ||
|
||
--- | ||
|
||
### Author Checklist | ||
|
||
*All items are required. Please add a note to the item if the item is not applicable and | ||
please add links to any relevant follow up issues.* | ||
|
||
I have... | ||
|
||
* [ ] Targeted the correct branch | ||
* [ ] Included the necessary unit tests | ||
* [ ] Added/adjusted the necessary [interchain tests](./test/interchain/) | ||
* [ ] Added a changelog entry in `.changelog` | ||
* [ ] Compiled the contracts by using `make compile` and included content of the *artifacts* directory into the PR | ||
* [ ] Regenerated front-end schema by using `make schema` and included generated files into the PR | ||
* [ ] Updated the relevant documentation or specification | ||
* [ ] Reviewed "Files changed" and left comments if necessary | ||
* [ ] Confirmed all CI checks have passed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Nightly Tests | ||
|
||
on: | ||
schedule: | ||
# run at 4am every day | ||
- cron: '0 4 * * *' | ||
|
||
jobs: | ||
test-interchain: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Interchain Tests | ||
run: make build-docker-relayer && make test-interchain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,6 @@ Cargo.toml.orig | |
|
||
# ignore proptest regressions | ||
*/proptest-regressions/* | ||
|
||
# macOS specific | ||
**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Cutting a new release | ||
|
||
### Creating the changelog | ||
|
||
To create a new release, you will need to have [unclog](https://github.com/informalsystems/unclog) installed. | ||
|
||
First, run: | ||
``` | ||
unclog release vX.Y.Z --editor nano | ||
``` | ||
This will move all the changelog entries from the `unreleased` folder into a new folder named after the release tag. It will also open an editor for you to write the release notes. | ||
For the release notes, include the date (as in `Date: October 15th, 2024`). You can | ||
optionally add a short summary of the release, but do not duplicate the changelog entries. | ||
|
||
Then, regenerate the `CHANGELOG` by running | ||
``` | ||
unclog build > CHANGELOG | ||
``` | ||
Finally, commit and push the changes to the repo. | ||
The up-to-date changelog should be present on the release branch for the release you have just cut, | ||
and also on main. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
b8ad3e6620dffc6b4d0357d983333d6db3f2ec4a485f0b87906bcff6c6e223e1 hydro.wasm | ||
b522862cb198bbfa2cab046110b4d26a590dea315fe838af3cf1455cad41f9b7 tribute.wasm | ||
0eef6df459b3aebf48f0a716bf09cadaa71ff3c8dfa8be783b6408f9451df77b hydro.wasm | ||
7a54621d5c5215757ac8ffdbfa42fa469f4c8d7694cbf8a8b3540bc96393fa05 tribute.wasm |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.