From 55c2693f32bcbcf5c5e3ef91a213966aa596aeb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Wed, 18 Jan 2023 17:01:37 +0100 Subject: [PATCH] Bump version to 0.2.5 --- CHANGELOG.md | 6 +++++- Dockerfile | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a0ccb1..cb25a24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ -## Unreleased +## 0.2.5 / 2023-01-18 17:01+01:00 * New * When adding session, pre-select game with the last session +* Fixed + * Start session now button would take up 100% width, leading to accidental clicks (https://git.kucharczyk.xyz/lukas/timetracker/issues/37) +* Removed + * Session model property `last` is already implemented by Django method `last()`, thus it was removed (https://git.kucharczyk.xyz/lukas/timetracker/issues/38) ## 0.2.4 / 2023-01-16 19:39+01:00 diff --git a/Dockerfile b/Dockerfile index c38232e..843641f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN npm install && \ FROM python:3.10.9-slim-bullseye -ENV VERSION_NUMBER 0.2.4 +ENV VERSION_NUMBER 0.2.5 ENV PROD 1 ENV PYTHONUNBUFFERED=1 diff --git a/pyproject.toml b/pyproject.toml index 03332fe..b064871 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "timetracker" -version = "0.2.4" +version = "0.2.5" description = "A simple time tracker." authors = ["Lukáš Kucharczyk "] license = "GPL"