Update version, changelog
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
d3682368b4
commit
83f075e49d
|
@ -1,3 +1,7 @@
|
|||
## 0.1.3 / 2023-01-08 15:23+01:00
|
||||
|
||||
* Fix CSRF error (https://git.kucharczyk.xyz/lukas/timetracker/pulls/22)
|
||||
|
||||
## 0.1.2 / 2023-01-07 22:05+01:00
|
||||
|
||||
* Switch to Uvicorn/Gunicorn + Caddy (https://git.kucharczyk.xyz/lukas/timetracker/pulls/4)
|
||||
|
|
|
@ -6,7 +6,7 @@ RUN npm install && \
|
|||
|
||||
FROM python:3.10.9-alpine
|
||||
|
||||
ENV VERSION_NUMBER 0.1.0-59-gc9b2d5b
|
||||
ENV VERSION_NUMBER 0.1.3
|
||||
ENV PROD 1
|
||||
|
||||
RUN apk add \
|
||||
|
@ -28,4 +28,4 @@ RUN pip install --no-cache-dir poetry
|
|||
RUN poetry install --without dev
|
||||
|
||||
EXPOSE 8000
|
||||
CMD [ "/entrypoint.sh" ]
|
||||
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "timetracker"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
description = "A simple time tracker."
|
||||
authors = ["Lukáš Kucharczyk <lukas@kucharczyk.xyz>"]
|
||||
license = "GPL"
|
||||
|
|
Loading…
Reference in New Issue