diff --git a/CHANGELOG.md b/CHANGELOG.md index 06e2cffa..9cc483e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +Version 2.5.3 +============= + +* Fix some DatePicker issues + Version 2.5.2 ============= diff --git a/backend/ibutsu_server/openapi/openapi.yaml b/backend/ibutsu_server/openapi/openapi.yaml index 657c3692..74e93698 100644 --- a/backend/ibutsu_server/openapi/openapi.yaml +++ b/backend/ibutsu_server/openapi/openapi.yaml @@ -2,7 +2,7 @@ openapi: 3.0.0 info: description: A system to store and query test results title: Ibutsu API - version: 2.5.2 + version: 2.5.3 servers: - url: /api tags: diff --git a/backend/setup.py b/backend/setup.py index 2e627142..1a86e8df 100644 --- a/backend/setup.py +++ b/backend/setup.py @@ -2,7 +2,7 @@ from setuptools import setup NAME = "ibutsu_server" -VERSION = "2.5.2" +VERSION = "2.5.3" REQUIRES = [ "alembic", "celery", diff --git a/frontend/package.json b/frontend/package.json index 792f5f21..4e45c62d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "ibutsu-frontend", - "version": "2.5.2", + "version": "2.5.3", "private": true, "dependencies": { "@babel/core": "^7.21.3",