ci: Make release CI search for NEXT.RELEASE instead

This commit is contained in:
Steven Roose 2023-04-19 16:07:03 +01:00
parent dad3abd20f
commit 38d11ce3da
No known key found for this signature in database
GPG Key ID: 2F2A88D7F8D68E87
2 changed files with 3 additions and 3 deletions

View File

@ -987,7 +987,7 @@ impl Transaction {
}
/// Checks if this is a coinbase transaction.
#[deprecated(since = "0.0.0-NEXT_RELEASE", note = "use is_coinbase instead")]
#[deprecated(since = "0.0.0-NEXT-RELEASE", note = "use is_coinbase instead")]
pub fn is_coin_base(&self) -> bool {
self.is_coinbase()
}

View File

@ -12,9 +12,9 @@ main () {
# Check if there is any mention of NEXT_RELEASE which means the
# next version number should be filled in.
if grep -qr NEXT_RELEASE ./$crate; then
if grep -qr NEXT.RELEASE ./$crate; then
echo Version number needs to be filled in following places:
grep -r NEXT_RELEASE ./$crate
grep -r NEXT.RELEASE ./$crate
exit 1
fi