Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: get10101/itchysats
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.5.2
Choose a base ref
...
head repository: get10101/itchysats
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.5.3
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Aug 1, 2022

  1. Update xtra

    Restioson authored and klochowicz committed Aug 1, 2022
    Copy the full SHA
    4cf1ae8 View commit details
  2. Update changelog

    klochowicz committed Aug 1, 2022
    Copy the full SHA
    0440ecc View commit details
Showing with 10 additions and 4 deletions.
  1. +7 −1 CHANGELOG.md
  2. +1 −1 Cargo.lock
  3. +1 −1 Cargo.toml
  4. +1 −1 xtras/src/send_async_safe.rs
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.5.3] - 2022-08-01

### Changed

- Update `xtra` dependency to be able to ignore frequent trace spans added in 0.5.2

## [0.5.2] - 2022-07-26

### Added

2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ members = [
resolver = "2"

[patch.crates-io]
xtra = { git = "https://github.com/Restioson/xtra", rev = "ff782ad379abad33c715173d21e2221189e252c0" } # Unreleased
xtra = { git = "https://github.com/Restioson/xtra", rev = "285b3e986013888cb68b9219464ef325d2468c2c" } # Unreleased
maia = { git = "https://github.com/comit-network/maia", rev = "fc6b78b98407b10b55f8cfd152062ad77f98cd9f" } # Unreleased
maia-core = { git = "https://github.com/comit-network/maia", tag = "0.1.1", package = "maia-core" } # Pinned to support maia 0.1 and 0.2
xtra_productivity = { git = "https://github.com/comit-network/xtra-productivity", rev = "0bfd589b42a63149221dec7e95aca932875374dd" } # Unreleased
2 changes: 1 addition & 1 deletion xtras/src/send_async_safe.rs
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ where
return Err(xtra::Error::Disconnected);
}

let rx = self.send(msg).split_receiver().await;
let rx = self.send(msg).split_receiver().await?;

#[allow(clippy::disallowed_methods)]
tokio::spawn(async {