diff --git a/changelog.md b/changelog.md index e5c22a4913..5121a71af3 100644 --- a/changelog.md +++ b/changelog.md @@ -1,8 +1,13 @@ # Changelog -## 2.4.1~rc1 +## 2.4.1 + +### Web Applications * Bugfix: fixed codename filter bug affecting messages with non-ASCII characters (#6492) + +### CI + * Added exclusions for 2 irrelevant safety db entries (#6473, #6477) ## 2.4.0 diff --git a/install_files/ansible-base/group_vars/all/securedrop b/install_files/ansible-base/group_vars/all/securedrop index ce96092849..534795a05b 100644 --- a/install_files/ansible-base/group_vars/all/securedrop +++ b/install_files/ansible-base/group_vars/all/securedrop @@ -2,7 +2,7 @@ # Variables that apply to both the app and monitor server go in this file # If the monitor or app server need different values define the variable in # hosts_vars/app.yml or host_vars/mon.yml -securedrop_version: "2.4.1~rc1" +securedrop_version: "2.4.1" securedrop_app_code_sdist_name: "securedrop-app-code-{{ securedrop_version | replace('~', '-') }}.tar.gz" grsecurity: true diff --git a/install_files/ansible-base/roles/build-securedrop-app-code-deb-pkg/files/changelog-focal b/install_files/ansible-base/roles/build-securedrop-app-code-deb-pkg/files/changelog-focal index 6a42433491..58153aaa63 100644 --- a/install_files/ansible-base/roles/build-securedrop-app-code-deb-pkg/files/changelog-focal +++ b/install_files/ansible-base/roles/build-securedrop-app-code-deb-pkg/files/changelog-focal @@ -1,8 +1,8 @@ -securedrop-app-code (2.4.1~rc1+focal) focal; urgency=medium +securedrop-app-code (2.4.1+focal) focal; urgency=medium - * see changelog.md + * see changelog.md - -- SecureDrop Team Tue, 19 Jul 2022 08:32:11 -0400 + -- SecureDrop Team Wed, 20 Jul 2022 07:25:04 -0400 securedrop-app-code (2.4.0+focal) focal; urgency=medium diff --git a/molecule/builder-focal/tests/vars.yml b/molecule/builder-focal/tests/vars.yml index 2f28656b26..bcc7be97f7 100644 --- a/molecule/builder-focal/tests/vars.yml +++ b/molecule/builder-focal/tests/vars.yml @@ -1,5 +1,5 @@ --- -securedrop_version: "2.4.1~rc1" +securedrop_version: "2.4.1" ossec_version: "3.6.0" keyring_version: "0.1.6" config_version: "0.1.4" diff --git a/molecule/shared/stable.ver b/molecule/shared/stable.ver index 197c4d5c2d..005119baaa 100644 --- a/molecule/shared/stable.ver +++ b/molecule/shared/stable.ver @@ -1 +1 @@ -2.4.0 +2.4.1 diff --git a/securedrop/version.py b/securedrop/version.py index d73f79f59c..5cd7abf832 100644 --- a/securedrop/version.py +++ b/securedrop/version.py @@ -1 +1 @@ -__version__ = '2.4.1~rc1' +__version__ = '2.4.1' diff --git a/setup.py b/setup.py index dfc4f3dca0..9f867bd500 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setuptools.setup( name="securedrop-app-code", - version="2.4.1~rc1", + version="2.4.1", author="Freedom of the Press Foundation", author_email="securedrop@freedom.press", description="SecureDrop Server",