From e8a141a000ad49467115ae41cc662f86cbbe8ab8 Mon Sep 17 00:00:00 2001 From: timofey Date: Thu, 2 Mar 2023 01:24:37 +0000 Subject: [PATCH] 1.1.0 --- Dockerfile | 8 ++++++++ docs/source/history.rst | 2 ++ setup.py | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b6bb2ba..9a1b17b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,6 +41,13 @@ WORKDIR /app/legacy/ptvp35/docs/ RUN make html +FROM compile-legacy as compile-1.1.0 + +RUN git fetch && git checkout 1.1.0 +WORKDIR /app/legacy/ptvp35/docs/ +RUN make html + + FROM compile-sphinx5.3.0-base as compile-latest COPY docs/Makefile docs/Makefile @@ -59,5 +66,6 @@ WORKDIR /app/docs/build/html/ COPY --from=compile-1.0 /app/legacy/ptvp35/build/html/ /app/docs/build/html/1.0/ COPY --from=compile-1.1rc0 /app/legacy/ptvp35/docs/build/html/ /app/docs/build/html/1.1rc0/ COPY --from=compile-1.1rc2 /app/legacy/ptvp35/docs/build/html/ /app/docs/build/html/1.1rc2/ +COPY --from=compile-1.1.0 /app/legacy/ptvp35/docs/build/html/ /app/docs/build/html/1.1.0/ COPY --from=compile-latest /app/docs/build/html/ /app/docs/build/html/ CMD [ "http-server", "-p", "80" ] diff --git a/docs/source/history.rst b/docs/source/history.rst index aac15b2..c6c437f 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -40,6 +40,8 @@ Persistence 5 1.1 (5.1.1). * Non-nightly support for transactions. * Instrumentation support. +* Structural preparations for generic DBs. +* :code:`VDELETE` Proposed future versions ======================== diff --git a/setup.py b/setup.py index 819d672..da026fb 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='ptvp35', - version='1.1rc5', + version='1.1.0', packages=['ptvp35'], url='https://gitea.ongoteam.net/PTV/ptvp35', license='MIT',