Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/WalletConnect/keyserver i…
Browse files Browse the repository at this point in the history
…nto fix/add-x-request-id
  • Loading branch information
chris13524 committed Dec 12, 2023
2 parents c5d0d78 + 62a2455 commit 15224b0
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.

- - -
## 1.13.1 - 2023-12-12
#### Bug Fixes
- add timing traces (#160) - (d5989ab) - Chris Smith

- - -

## 1.13.0 - 2023-12-07
#### Bug Fixes
- update prometheus metrics (#159) - (b73ba03) - Xavier Basty
Expand Down
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
@@ -1,6 +1,6 @@
[package]
name = "keyserver"
version = "1.13.0"
version = "1.13.1"
edition = "2021"
authors = [
"Derek Rein <[email protected]>",
Expand Down
11 changes: 11 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ fmt-imports:
echo '==> rustfmt not found in PATH, skipping'
fi

fmt-imports:
#!/bin/bash
set -euo pipefail

if command -v cargo-fmt >/dev/null; then
echo '==> Running rustfmt'
cargo +nightly fmt -- --config group_imports=StdExternalCrate,imports_granularity=One
else
echo '==> rustfmt not found in PATH, skipping'
fi

# Build docker image
build-docker:
@echo '=> Build keys-server docker image'
Expand Down

0 comments on commit 15224b0

Please sign in to comment.