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

Bump version to 1.8.0. #6

Merged
merged 3 commits into from
Nov 6, 2023
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
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions agents/processor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog


### agents@1.8.0

- Add event sorting
- Update Avail api

### agents@1.6.0

- use `std::fmt::Display` to log contracts
Expand Down
2 changes: 1 addition & 1 deletion agents/processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "processor"
version = "1.7.2"
version = "1.8.0"
authors = ["Luke Tchang <luke@nomad.xyz>", "James Prestwich <james@nomad.xyz>"]
edition = "2021"
description = "Nomad processor agent"
Expand Down
5 changes: 5 additions & 0 deletions agents/relayer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

### Unreleased

### agents@1.8.0

- Add event sorting
- Update Avail api

### agents@1.6.0

- integrate substrate into agents
Expand Down
2 changes: 1 addition & 1 deletion agents/relayer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "relayer"
version = "1.7.2"
version = "1.8.0"
authors = ["Luke Tchang <luke@nomad.xyz>", "James Prestwich <james@nomad.xyz>"]
edition = "2021"
description = "Nomad relayer agent"
Expand Down
5 changes: 5 additions & 0 deletions agents/updater/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

### Unreleased

### agents@1.8.0

- Add event sorting
- Update Avail api

### agents@1.6.0

- intergate substrate into agents
Expand Down
2 changes: 1 addition & 1 deletion agents/updater/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "updater"
version = "1.7.2"
version = "1.8.0"
authors = ["James Prestwich <james@nomad.xyz>", "Luke Tchang <luke@nomad.xyz>"]
edition = "2021"
description = "Nomad updater agent"
Expand Down
5 changes: 5 additions & 0 deletions agents/watcher/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

### Unreleased

### agents@1.8.0

- Add event sorting
- Update Avail api

### agents@1.6.0

- intergate substrate into agents
Expand Down
2 changes: 1 addition & 1 deletion agents/watcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "watcher"
version = "1.7.2"
version = "1.8.0"
authors = ["Luke Tchang <luke@nomad.xyz>", "James Prestwich <james@nomad.xyz>"]
edition = "2021"
description = "Nomad watcher agent"
Expand Down
2 changes: 1 addition & 1 deletion chains/nomad-substrate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = ["Luke Tchang <luke@nomad.xyz>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
avail-subxt = { git = "https://github.com/availproject/avail.git", tag = "nomad-v1.7.2" }
avail-subxt = { git = "https://github.com/availproject/avail.git", branch = "nomad-v1.8.0.0" }
subxt = "0.24.0"
affix = "0.1.2"
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
Expand Down
Loading