Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version: v2.14.0 #989

Merged
merged 2 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
depends_on:
- postgres
- redis
image: certpl/mwdb:v2.13.0
image: certpl/mwdb:v2.14.0
restart: on-failure
env_file:
# NOTE: use gen_vars.sh in order to generate this file
Expand All @@ -22,7 +22,7 @@ services:
build:
context: .
dockerfile: deploy/docker/Dockerfile-web
image: certpl/mwdb-web:v2.13.0
image: certpl/mwdb-web:v2.14.0
ports:
- "80:80"
restart: on-failure
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = 'CERT Polska'

# The full version, including alpha/beta/rc tags
release = '2.13.0'
release = '2.14.0'


# -- General configuration ---------------------------------------------------
Expand Down
7 changes: 7 additions & 0 deletions docs/whats-changed.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ have compatibility problems after minor mwdb-core upgrade.

For upgrade instructions, see :ref:`Upgrading mwdb-core to latest version`.

v2.14.0
-------

This release is focused on minor improvements of performance and OpenID Connect features.

Complete changelog can be found here: `v2.13.0 changelog <https://github.com/CERT-Polska/mwdb-core/releases/tag/v2.14.0>`_.

v2.13.0
-------

Expand Down
2 changes: 1 addition & 1 deletion mwdb/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
except IOError:
git_revision = ""

app_version = "2.13.0"
app_version = "2.14.0"
app_build_version = f"{app_version}+{git_revision}" if git_revision else app_version
4 changes: 2 additions & 2 deletions mwdb/web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mwdb/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mwdb-web",
"version": "2.13.0",
"version": "2.14.0",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

setup(name="mwdb-core",
version="2.13.0",
version="2.14.0",
description="MWDB Core malware database",
long_description=LONG_DESCRIPTION,
author="CERT Polska",
Expand Down
Loading