Skip to content

Commit 9cfdd6b

Browse files
committed
Version 2.8.1.
1 parent 4749473 commit 9cfdd6b

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ Download
3939
Release notes and tarballs are available at
4040
[kernel.org](https://cdn.kernel.org/pub/linux/utils/cryptsetup/).
4141

42-
**The latest stable cryptsetup release version is 2.8.0**
43-
* [cryptsetup-2.8.0.tar.xz](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.8/cryptsetup-2.8.0.tar.xz)
44-
* Signature [cryptsetup-2.8.0.tar.sign](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.8/cryptsetup-2.8.0.tar.sign)
42+
**The latest stable cryptsetup release version is 2.8.1**
43+
* [cryptsetup-2.8.1.tar.xz](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.8/cryptsetup-2.8.1.tar.xz)
44+
* Signature [cryptsetup-2.8.1.tar.sign](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.8/cryptsetup-2.8.1.tar.sign)
4545
_(You need to decompress file first to check signature.)_
46-
* [Cryptsetup 2.8.0 Release Notes](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.8/v2.8.0-ReleaseNotes).
46+
* [Cryptsetup 2.8.1 Release Notes](https://cdn.kernel.org/pub/linux/utils/cryptsetup/v2.8/v2.8.1-ReleaseNotes).
4747

4848
[Previous versions](https://cdn.kernel.org/pub/linux/utils/cryptsetup)
4949

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.67])
2-
AC_INIT([cryptsetup],[2.8.1-rc0])
2+
AC_INIT([cryptsetup],[2.8.1])
33

44
dnl library version from <major>.<minor>.<release>[-<suffix>]
55
LIBCRYPTSETUP_VERSION=$(echo $PACKAGE_VERSION | cut -f1 -d-)

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ project('cryptsetup',
22
'c',
33
default_options: [ 'prefix=/usr' ],
44
meson_version: '>=0.64',
5-
version: '2.8.1-rc0')
5+
version: '2.8.1')
66

77
libcryptsetup_version = '12.11.0'
88

misc/fedora/cryptsetup.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Summary: Utility for setting up encrypted disks
44
Name: cryptsetup
5-
Version: 2.8.0
5+
Version: 2.8.1
66
Release: 1%{?dist}
77
License: GPL-2.0-or-later WITH cryptsetup-OpenSSL-exception AND LGPL-2.1-or-later WITH cryptsetup-OpenSSL-exception
88
URL: https://gitlab.com/cryptsetup/cryptsetup

po/cryptsetup.pot

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#, fuzzy
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: cryptsetup 2.8.1-rc0\n"
8+
"Project-Id-Version: cryptsetup 2.8.1\n"
99
"Report-Msgid-Bugs-To: [email protected]\n"
10-
"POT-Creation-Date: 2025-08-13 13:45+0200\n"
10+
"POT-Creation-Date: 2025-08-19 10:38+0200\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -1785,13 +1785,13 @@ msgstr ""
17851785
msgid "Not enough memory for keyslot key derivation."
17861786
msgstr ""
17871787

1788-
#: lib/luks2/luks2_keyslot_luks2.c:276 lib/luks2/luks2_keyslot_luks2.c:401
1788+
#: lib/luks2/luks2_keyslot_luks2.c:276 lib/luks2/luks2_keyslot_luks2.c:405
17891789
#: lib/luks2/luks2_keyslot_reenc.c:434 lib/luks2/luks2_reencrypt.c:2725
17901790
#, c-format
17911791
msgid "Hash algorithm %s is not available."
17921792
msgstr ""
17931793

1794-
#: lib/luks2/luks2_keyslot_luks2.c:518
1794+
#: lib/luks2/luks2_keyslot_luks2.c:522
17951795
msgid "No space for new keyslot."
17961796
msgstr ""
17971797

tests/api-test-2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3045,7 +3045,7 @@ static void Pbkdf(void)
30453045
argon2.parallel_threads = 0;
30463046
FAIL_(crypt_set_pbkdf_type(cd, &argon2), "Parallel threads can't be 0");
30473047
argon2.parallel_threads = 99;
3048-
FAIL_(crypt_set_pbkdf_type(cd, &argon2), "Parallel threads can't be higher than maxiimum");
3048+
FAIL_(crypt_set_pbkdf_type(cd, &argon2), "Parallel threads can't be higher than maximum");
30493049
argon2.parallel_threads = 1;
30503050
argon2.max_memory_kb = 0;
30513051
FAIL_(crypt_set_pbkdf_type(cd, &argon2), "Memory can't be 0");

0 commit comments

Comments
 (0)