Skip to content

Commit

Permalink
bumpup versions (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n authored Dec 22, 2024
1 parent af8bd85 commit f44378d
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
working-directory: ${{ matrix.crate }}
continue-on-error: true
- name: Upload Coverage Report as Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ${{ matrix.crate }}/cobertura.xml
Expand All @@ -131,7 +131,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download all coverage reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: reports/
- name: List contents of the reports directory
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/loc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
loc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust
run: |
Expand All @@ -42,7 +42,7 @@ jobs:
tokeit
- name: Upload loc to GitHub Gist
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{secrets.GIST_PAT}}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/net.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
working-directory: memberlist

- name: Cache Cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/python.yml.bk
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand All @@ -44,7 +44,7 @@ jobs:
matrix:
target: [x64, x86]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand All @@ -68,7 +68,7 @@ jobs:
matrix:
target: [x86_64, aarch64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand All @@ -88,7 +88,7 @@ jobs:
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
Expand All @@ -107,7 +107,7 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
- name: Publish to PyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quinn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
working-directory: memberlist

- name: Cache Cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/s2n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
# working-directory: memberlist

- name: Cache Cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ derive_more = { version = "1", features = ["full"] }
futures = "0.3"
indexmap = "2"
local-ip-address = "0.6"
metrics = "0.22"
metrics = "0.24"
nodecraft = { version = "0.4", features = [
"transformable",
"async",
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ once_cell = "1.17"
rustix = { version = "0.38", features = ["system"] }

[target.'cfg(windows)'.dependencies]
hostname = "0.3"
hostname = "0.4"

[dependencies]
auto_impl.workspace = true
Expand Down Expand Up @@ -87,7 +87,7 @@ tracing-subscriber = { version = "0.3", optional = true, features = [
"env-filter",
"tracing-log",
] }
pnet = { version = "0.34", optional = true }
pnet = { version = "0.35", optional = true }


# metrics feature
Expand All @@ -98,7 +98,7 @@ tracing-subscriber = { version = "0.3", features = [
"env-filter",
"tracing-log",
] }
pnet = "0.34"
pnet = "0.35"
agnostic = { workspace = true, features = ["net", "tokio"] }
rand = "0.8"
tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion transports/net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ tracing.workspace = true
viewit.workspace = true

# tls
futures-rustls = { version = "0.25", optional = true }
futures-rustls = { version = "0.26", optional = true }

# native-tls
async-native-tls = { version = "0.5", optional = true }
Expand Down

0 comments on commit f44378d

Please sign in to comment.