This commit is contained in:
AF 2023-03-02 01:24:37 +00:00
parent fffff4973e
commit e8a141a000
3 changed files with 11 additions and 1 deletions

View File

@ -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" ]

View File

@ -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
========================

View File

@ -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',