diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0fdbd0d4..95b4bbdd 100755 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,22 +2,21 @@ name: CI on: [push, pull_request] jobs: build: - name: Node ${{ matrix.node }} on ${{ matrix.os }} + name: Node ${{ matrix.node }} - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest strategy: matrix: - node: ['20.x', '22.x'] - os: [ubuntu-latest, macOS-latest] + node: [20, 22] steps: - - name: Checkout + - name: Checkout repository uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 with: - version: 9 + run_install: false - name: Use Node ${{ matrix.node }} uses: actions/setup-node@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index da224619..c3c15e27 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v5.0.0-rc.2 (2024-12-06) + +This RC uses the stable releases of React v19. + ## v5.0.0-rc.1 (2024-05-24) ### Breaking changes