mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
Merge pull request #1699 from joshuaboniface/bump-version
Bump version to 10.4.0
This commit is contained in:
commit
2aecc3fa1b
@ -22,7 +22,7 @@ RUN apt-get update \
|
|||||||
COPY --from=ffmpeg / /
|
COPY --from=ffmpeg / /
|
||||||
COPY --from=builder /jellyfin /jellyfin
|
COPY --from=builder /jellyfin /jellyfin
|
||||||
|
|
||||||
ARG JELLYFIN_WEB_VERSION=v10.3.7
|
ARG JELLYFIN_WEB_VERSION=v10.4.0
|
||||||
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
||||||
&& rm -rf /jellyfin/jellyfin-web \
|
&& rm -rf /jellyfin/jellyfin-web \
|
||||||
&& mv jellyfin-web-* /jellyfin/jellyfin-web
|
&& mv jellyfin-web-* /jellyfin/jellyfin-web
|
||||||
|
@ -26,7 +26,7 @@ RUN apt-get update \
|
|||||||
&& chmod 777 /cache /config /media
|
&& chmod 777 /cache /config /media
|
||||||
COPY --from=builder /jellyfin /jellyfin
|
COPY --from=builder /jellyfin /jellyfin
|
||||||
|
|
||||||
ARG JELLYFIN_WEB_VERSION=v10.3.7
|
ARG JELLYFIN_WEB_VERSION=v10.4.0
|
||||||
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
||||||
&& rm -rf /jellyfin/jellyfin-web \
|
&& rm -rf /jellyfin/jellyfin-web \
|
||||||
&& mv jellyfin-web-* /jellyfin/jellyfin-web
|
&& mv jellyfin-web-* /jellyfin/jellyfin-web
|
||||||
|
@ -26,7 +26,7 @@ RUN apt-get update \
|
|||||||
&& chmod 777 /cache /config /media
|
&& chmod 777 /cache /config /media
|
||||||
COPY --from=builder /jellyfin /jellyfin
|
COPY --from=builder /jellyfin /jellyfin
|
||||||
|
|
||||||
ARG JELLYFIN_WEB_VERSION=v10.3.7
|
ARG JELLYFIN_WEB_VERSION=v10.4.0
|
||||||
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
||||||
&& rm -rf /jellyfin/jellyfin-web \
|
&& rm -rf /jellyfin/jellyfin-web \
|
||||||
&& mv jellyfin-web-* /jellyfin/jellyfin-web
|
&& mv jellyfin-web-* /jellyfin/jellyfin-web
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 1d0fd79eb1e4d0bf6a9f62f769a951970383bcf0
|
Subproject commit 867a5e664cb968602b50dee4874fcb961eed4803
|
@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: AssemblyVersion("10.3.7")]
|
[assembly: AssemblyVersion("10.4.0")]
|
||||||
[assembly: AssemblyFileVersion("10.3.7")]
|
[assembly: AssemblyFileVersion("10.4.0")]
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
# We just wrap `build` so this is really it
|
# We just wrap `build` so this is really it
|
||||||
name: "jellyfin"
|
name: "jellyfin"
|
||||||
version: "10.3.7"
|
version: "10.4.0"
|
||||||
packages:
|
packages:
|
||||||
- debian-package-x64
|
- debian-package-x64
|
||||||
- debian-package-armhf
|
- debian-package-armhf
|
||||||
|
@ -24,7 +24,11 @@ fi
|
|||||||
shared_version_file="./SharedVersion.cs"
|
shared_version_file="./SharedVersion.cs"
|
||||||
build_file="./build.yaml"
|
build_file="./build.yaml"
|
||||||
|
|
||||||
web_branch="$( git branch 2>/dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/' )"
|
if [[ -z $2 ]]; then
|
||||||
|
web_branch="$( git branch 2>/dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/' )"
|
||||||
|
else
|
||||||
|
web_branch="$2"
|
||||||
|
fi
|
||||||
|
|
||||||
# Initialize submodules
|
# Initialize submodules
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
@ -80,7 +84,7 @@ fi
|
|||||||
# Set the Dockerfile web version to the specified new_version
|
# Set the Dockerfile web version to the specified new_version
|
||||||
old_version="$(
|
old_version="$(
|
||||||
grep "JELLYFIN_WEB_VERSION=" Dockerfile \
|
grep "JELLYFIN_WEB_VERSION=" Dockerfile \
|
||||||
| sed -E 's/ARG JELLYFIN_WEB_VERSION=([0-9\.]+[-a-z0-9]*)/\1/'
|
| sed -E 's/ARG JELLYFIN_WEB_VERSION=v([0-9\.]+[-a-z0-9]*)/\1/'
|
||||||
)"
|
)"
|
||||||
echo $old_version
|
echo $old_version
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
jellyfin (10.4.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* New upstream version 10.4.0; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.4.0
|
||||||
|
|
||||||
|
-- Jellyfin Packaging Team <packaging@jellyfin.org> Sat, 31 Aug 2019 21:38:56 -0400
|
||||||
|
|
||||||
jellyfin (10.3.7-1) unstable; urgency=medium
|
jellyfin (10.3.7-1) unstable; urgency=medium
|
||||||
|
|
||||||
* New upstream version 10.3.7; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.7
|
* New upstream version 10.3.7; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.7
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: jellyfin
|
Name: jellyfin
|
||||||
Version: 10.3.7
|
Version: 10.4.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: The Free Software Media Browser
|
Summary: The Free Software Media Browser
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
@ -140,6 +140,8 @@ fi
|
|||||||
%systemd_postun_with_restart jellyfin.service
|
%systemd_postun_with_restart jellyfin.service
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Aug 31 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
||||||
|
- New upstream version 10.4.0; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.4.0
|
||||||
* Wed Jul 24 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
* Wed Jul 24 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
||||||
- New upstream version 10.3.7; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.7
|
- New upstream version 10.3.7; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.3.7
|
||||||
* Sat Jul 06 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
* Sat Jul 06 2019 Jellyfin Packaging Team <packaging@jellyfin.org>
|
||||||
|
Loading…
Reference in New Issue
Block a user