Compare commits
20 Commits
release/v0
...
feature/re
Author | SHA1 | Date | |
---|---|---|---|
78078132ce | |||
6aa253d44e | |||
d461a8f6a1 | |||
4847cc4f1f | |||
bef518d594 | |||
c22cc59924 | |||
a4e28984ef | |||
f4372c3248 | |||
e9554a20a7 | |||
7862446e16 | |||
b4a7444442 | |||
66861cb4d3 | |||
e6b1dfece8
|
|||
6837660a79 | |||
109886ad9a | |||
dcadae98b6 | |||
4845826023 | |||
ce9db6b4a7
|
|||
24f2d43550
|
|||
43bbf4d377 |
12
.github/dependabot.yml
vendored
12
.github/dependabot.yml
vendored
@ -10,3 +10,15 @@ updates:
|
||||
- vbrandl
|
||||
labels:
|
||||
- dependencies
|
||||
- dependabot
|
||||
|
||||
- package-ecosystem: 'github-actions'
|
||||
directory: '/'
|
||||
schedule:
|
||||
interval: 'daily'
|
||||
open-pull-requests-limit: 10
|
||||
assignees:
|
||||
- vbrandl
|
||||
labels:
|
||||
- dependabot
|
||||
- dependencies
|
||||
|
26
.github/workflows/dependabot-changelog.yml
vendored
Normal file
26
.github/workflows/dependabot-changelog.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: 'Dependabot Changelog'
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
- reopened
|
||||
- ready_for_review
|
||||
- labeled
|
||||
- unlabeled
|
||||
|
||||
jobs:
|
||||
changelog:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
token: ${{ secrets.ACTION_TOKEN }}
|
||||
- uses: dangoslen/dependabot-changelog-helper@v3
|
||||
with:
|
||||
activationLabel: 'dependabot'
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
commit_message: "Update Changelog"
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -42,7 +42,7 @@ jobs:
|
||||
override: true
|
||||
|
||||
- name: Cache cargo registry, index and build directory
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/registry
|
||||
|
@ -4,6 +4,10 @@ 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]
|
||||
### Dependencies
|
||||
- Bump `serde` from 1.0.160 to 1.0.163 (#613, #617)
|
||||
- Bump `actions/cache` from 2 to 3 (#616)
|
||||
- Bump `tokio` from 1.28.0 to 1.28.1 (#618)
|
||||
|
||||
|
||||
## [0.35.0] 2023-05-04
|
||||
@ -227,4 +231,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
[#502]: https://github.com/vbrandl/hoc/pull/502
|
||||
[#503]: https://github.com/vbrandl/hoc/pull/503
|
||||
[#504]: https://github.com/vbrandl/hoc/pull/504
|
||||
[#508]: https://github.com/vbrandl/hoc/pull/508
|
||||
[#508]: https://github.com/vbrandl/hoc/pull/508
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -2357,18 +2357,18 @@ checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
||||
|
||||
[[package]]
|
||||
name = "serde"
|
||||
version = "1.0.160"
|
||||
version = "1.0.163"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
|
||||
checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
|
||||
dependencies = [
|
||||
"serde_derive",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "serde_derive"
|
||||
version = "1.0.160"
|
||||
version = "1.0.163"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
|
||||
checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -2596,9 +2596,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
||||
|
||||
[[package]]
|
||||
name = "tokio"
|
||||
version = "1.28.0"
|
||||
version = "1.28.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f"
|
||||
checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
"bytes",
|
||||
|
@ -26,7 +26,7 @@ mime = "0.3"
|
||||
number_prefix = "0.4.0"
|
||||
openssl-probe = "0.1.5"
|
||||
reqwest = "0.11.17"
|
||||
serde = "1.0.158"
|
||||
serde = "1.0.163"
|
||||
serde_derive = "1.0.137"
|
||||
serde_json = "1.0.94"
|
||||
tracing = "0.1.37"
|
||||
@ -45,4 +45,4 @@ vergen = { version = "8.1.3", default-features = false, features = ["git", "gito
|
||||
awc = "3.1.1"
|
||||
ructe = "0.16.1"
|
||||
tempfile = "3.5.0"
|
||||
tokio = "1.28.0"
|
||||
tokio = "1.28.1"
|
||||
|
Reference in New Issue
Block a user