Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- target: x86_64-pc-windows-msvc
os: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust
run: scripts/ci/install-rust.sh stable ${{ matrix.target }}
- name: Build asset
Expand All @@ -51,7 +51,7 @@ jobs:
name: Publish to crates.io
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust (rustup)
run: rustup update stable --no-self-update && rustup default stable
- name: Publish
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# rust: stable
# experimental: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust
run: scripts/ci/install-rust.sh ${{ matrix.rust }}
- name: Install mdbook
Expand All @@ -53,7 +53,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable && rustup default stable && rustup component add rustfmt
- run: cargo fmt --check
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

<!-- add new items here -->

## v0.4.0

- Drop support for `@angular-devkit/build-angular`, require `@angular/build` to be installed as top-level package
- Remove the old "slow" builder
- Replace the fast "experimental" builder with a new implementation that doesn't use any private Angular APIs
Expand Down
Loading