Skip to content

Commit

Permalink
build(repo): Fixing publishing on crates
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Jan 24, 2025
1 parent 8bd867a commit 5eb607f
Show file tree
Hide file tree
Showing 21 changed files with 468 additions and 309 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-node/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ runs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22.11.0
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
version: 10.0.0
run_install: true
- name: Get pnpm store directory
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-rust/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
toolchain:
description: Rust toolchain version to install
required: true
default: 1.81.0
default: 1.84.0
cache:
description: Use sscache
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
env:
CARGO_TERM_COLOR: always
CLICOLOR: 1
RUST_NIGHTLY_VERSION: nightly-2024-11-06
RUST_NIGHTLY_VERSION: nightly-2025-01-24
CI: true

concurrency:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prepare_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ concurrency:
env:
CARGO_TERM_COLOR: always
CLICOLOR: 1
RUST_VERSION: 1.81.0
RUST_NIGHTLY_VERSION: nightly-2024-11-06
RUST_VERSION: 1.84.0
RUST_NIGHTLY_VERSION: nightly-2025-01-24

permissions:
contents: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:

env:
CI: true
RUST_VERSION: 1.81.0
RUST_NIGHTLY_VERSION: nightly-2024-11-06
RUST_VERSION: 1.84.0
RUST_NIGHTLY_VERSION: nightly-2025-01-24

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.0.19 (2025-01-24)

### 🐛 Fixes

- Pin netlink-proto to 0.11.3 (#388)

## 0.0.18 (2025-01-24)

### 🐛 Fixes
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This guide will show you how to run this project locally if you want to test or
Most projects under the umbrella of data systems are written in Rust, so we prefer using Rust tooling and community standards. Ensure you have the following tools installed:

- [Rust](https://www.rust-lang.org/tools/install) (latest stable version recommended)
- [Rust Nightly](https://rust-lang.github.io/rustup/concepts/channels.html) (version nightly-2024-11-06)
- [Rust Nightly](https://rust-lang.github.io/rustup/concepts/channels.html) (version nightly-2025-01-24)
- [Make](https://www.gnu.org/software/make/)
- [Pre-commit](https://pre-commit.com/#install)
- [NodeJS](https://nodejs.org/en/download/)
Expand Down Expand Up @@ -163,7 +163,7 @@ If you encounter any issues while setting up or contributing to the project, her

1. **Pre-commit hooks failing**: Ensure you've installed all the required dependencies and run `make setup`. If issues persist, try running `pre-commit run --all-files` to see detailed error messages.

2. **Build failures**: Make sure you're using the latest stable Rust version and the correct nightly version. You can update Rust using `rustup update stable` and `rustup update nightly-2024-11-06`.
2. **Build failures**: Make sure you're using the latest stable Rust version and the correct nightly version. You can update Rust using `rustup update stable` and `rustup update nightly-2025-01-24`.

3. **Test failures**: If specific tests are failing, try running them in isolation to see if it's a concurrency issue. Use `RUST_BACKTRACE=1` to get more detailed error information.

Expand Down
Loading

0 comments on commit 5eb607f

Please sign in to comment.