mirror of
https://github.com/fafhrd91/actix-web
synced 2025-03-20 14:25:18 +01:00
remove readme msrv link
This commit is contained in:
parent
8bbf2b5052
commit
0f7292c69a
@ -7,12 +7,12 @@
|
|||||||
|
|
||||||
[](https://crates.io/crates/actix-web)
|
[](https://crates.io/crates/actix-web)
|
||||||
[](https://docs.rs/actix-web/4.0.0-beta.19)
|
[](https://docs.rs/actix-web/4.0.0-beta.19)
|
||||||
[](https://blog.rust-lang.org/2021/05/06/Rust-1.54.0.html)
|

|
||||||

|

|
||||||
[](https://deps.rs/crate/actix-web/4.0.0-beta.19)
|
[](https://deps.rs/crate/actix-web/4.0.0-beta.19)
|
||||||
<br />
|
<br />
|
||||||
[](https://github.com/actix/actix-web/actions/workflows/ci.yml)
|
[](https://github.com/actix/actix-web/actions/workflows/ci.yml)
|
||||||
[](https://codecov.io/gh/actix/actix-web)
|
[](https://codecov.io/gh/actix/actix-web)
|
||||||

|

|
||||||
[](https://discord.gg/NWpN5mmg3x)
|
[](https://discord.gg/NWpN5mmg3x)
|
||||||
|
|
||||||
|
11
scripts/bump
11
scripts/bump
@ -17,9 +17,18 @@ if [ "$(uname)" = "Darwin" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
CARGO_MANIFEST=$DIR/Cargo.toml
|
CARGO_MANIFEST=$DIR/Cargo.toml
|
||||||
CHANGELOG_FILE=$DIR/CHANGES.md
|
|
||||||
README_FILE=$DIR/README.md
|
README_FILE=$DIR/README.md
|
||||||
|
|
||||||
|
# determine changelog file name
|
||||||
|
if [ -f "$DIR/CHANGES.md" ]; then
|
||||||
|
CHANGELOG_FILE=$DIR/CHANGES.md
|
||||||
|
elif [ -f "$DIR/CHANGELOG.md" ]; then
|
||||||
|
CHANGELOG_FILE=$DIR/CHANGELOG.md
|
||||||
|
else
|
||||||
|
echo "No changelog file found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# get current version
|
# get current version
|
||||||
PACKAGE_NAME="$(sed -nE 's/^name ?= ?"([^"]+)"$/\1/ p' "$CARGO_MANIFEST" | head -n 1)"
|
PACKAGE_NAME="$(sed -nE 's/^name ?= ?"([^"]+)"$/\1/ p' "$CARGO_MANIFEST" | head -n 1)"
|
||||||
CURRENT_VERSION="$(sed -nE 's/^version ?= ?"([^"]+)"$/\1/ p' "$CARGO_MANIFEST")"
|
CURRENT_VERSION="$(sed -nE 's/^version ?= ?"([^"]+)"$/\1/ p' "$CARGO_MANIFEST")"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user