mirror of
https://github.com/fafhrd91/actix-web
synced 2025-07-24 01:38:20 +02:00
Compare commits
2 Commits
web-v4.9.0
...
ci-semver-
Author | SHA1 | Date | |
---|---|---|---|
|
a7c5366503 | ||
|
270bbf1906 |
49
.github/workflows/semver.yml
vendored
Normal file
49
.github/workflows/semver.yml
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
name: Semver
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.label.name }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
check-semver-patch:
|
||||
name: Check semver (patch)
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.label.name == 'B-semver-patch'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check semver (patch)
|
||||
uses: obi1kenobi/cargo-semver-checks-action@v2.1
|
||||
with:
|
||||
release-type: patch
|
||||
|
||||
check-semver-minor:
|
||||
name: Check semver (minor)
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.label.name == 'B-semver-minor'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check semver (minor)
|
||||
uses: obi1kenobi/cargo-semver-checks-action@v2.1
|
||||
with:
|
||||
release-type: minor
|
||||
|
||||
check-semver-major:
|
||||
name: Check semver (major)
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.label.name == 'B-semver-major'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check semver (major)
|
||||
uses: obi1kenobi/cargo-semver-checks-action@v2.1
|
||||
with:
|
||||
release-type: major
|
@@ -2,8 +2,6 @@
|
||||
|
||||
## Unreleased
|
||||
|
||||
## 4.9.0
|
||||
|
||||
### Added
|
||||
|
||||
- Add `middleware::from_fn()` helper.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-web"
|
||||
version = "4.9.0"
|
||||
version = "4.8.0"
|
||||
description = "Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust"
|
||||
authors = [
|
||||
"Nikolay Kim <fafhrd91@gmail.com>",
|
||||
|
@@ -8,10 +8,10 @@
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
[](https://crates.io/crates/actix-web)
|
||||
[](https://docs.rs/actix-web/4.9.0)
|
||||
[](https://docs.rs/actix-web/4.8.0)
|
||||

|
||||

|
||||
[](https://deps.rs/crate/actix-web/4.9.0)
|
||||
[](https://deps.rs/crate/actix-web/4.8.0)
|
||||
<br />
|
||||
[](https://github.com/actix/actix-web/actions/workflows/ci.yml)
|
||||
[](https://codecov.io/gh/actix/actix-web)
|
||||
|
Reference in New Issue
Block a user