aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-04-05 12:40:00 -0400
committerJoshua M. Boniface <joshua@boniface.me>2020-04-05 12:40:29 -0400
commit4caa597cde4634b9d62b4e8ad06c8ba25c93dcd9 (patch)
tree54dcce1208093240322593c3e1d8cf8a4d214ad0
parentda34bd940ea3681b9b6f872548933cf4c7d401f4 (diff)
Bump version to 10.5.3
Include quick robustness fix in Docker container clone too.
-rw-r--r--Dockerfile3
-rw-r--r--Dockerfile.arm3
-rw-r--r--Dockerfile.arm643
-rw-r--r--SharedVersion.cs4
-rw-r--r--build.yaml2
-rw-r--r--deployment/debian-package-x64/pkg-src/changelog6
-rw-r--r--deployment/fedora-package-x64/pkg-src/jellyfin.spec2
7 files changed, 17 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile
index d8ea88142..283743f2a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,10 +2,11 @@ ARG DOTNET_VERSION=3.1
ARG FFMPEG_VERSION=latest
FROM node:alpine as web-builder
-ARG JELLYFIN_WEB_VERSION=10.5.2
+ARG JELLYFIN_WEB_VERSION=10.5.3
RUN apk add curl git \
&& git clone --branch release-10.5.z --single-branch https://github.com/jellyfin/jellyfin-web.git \
&& cd jellyfin-web \
+ && git checkout tags/v${JELLYFIN_WEB_VERSION} \
&& yarn install \
&& yarn build \
&& mv dist /dist
diff --git a/Dockerfile.arm b/Dockerfile.arm
index 0fe1b26f4..8a562c6ed 100644
--- a/Dockerfile.arm
+++ b/Dockerfile.arm
@@ -6,10 +6,11 @@ ARG DOTNET_VERSION=3.1
FROM node:alpine as web-builder
-ARG JELLYFIN_WEB_VERSION=10.5.2
+ARG JELLYFIN_WEB_VERSION=10.5.3
RUN apk add curl git \
&& git clone --branch release-10.5.z --single-branch https://github.com/jellyfin/jellyfin-web.git \
&& cd jellyfin-web \
+ && git checkout tags/v${JELLYFIN_WEB_VERSION} \
&& yarn install \
&& yarn build \
&& mv dist /dist
diff --git a/Dockerfile.arm64 b/Dockerfile.arm64
index 9b3e9e087..bee7139d4 100644
--- a/Dockerfile.arm64
+++ b/Dockerfile.arm64
@@ -6,10 +6,11 @@ ARG DOTNET_VERSION=3.1
FROM node:alpine as web-builder
-ARG JELLYFIN_WEB_VERSION=10.5.2
+ARG JELLYFIN_WEB_VERSION=10.5.3
RUN apk add curl git \
&& git clone --branch release-10.5.z --single-branch https://github.com/jellyfin/jellyfin-web.git \
&& cd jellyfin-web \
+ && git checkout tags/v${JELLYFIN_WEB_VERSION} \
&& yarn install \
&& yarn build \
&& mv dist /dist
diff --git a/SharedVersion.cs b/SharedVersion.cs
index a1447d958..d3c4c62b1 100644
--- a/SharedVersion.cs
+++ b/SharedVersion.cs
@@ -1,4 +1,4 @@
using System.Reflection;
-[assembly: AssemblyVersion("10.5.2")]
-[assembly: AssemblyFileVersion("10.5.2")]
+[assembly: AssemblyVersion("10.5.3")]
+[assembly: AssemblyFileVersion("10.5.3")]
diff --git a/build.yaml b/build.yaml
index 809c4afd6..2caf04737 100644
--- a/build.yaml
+++ b/build.yaml
@@ -1,7 +1,7 @@
---
# We just wrap `build` so this is really it
name: "jellyfin"
-version: "10.5.2"
+version: "10.5.3"
packages:
- debian-package-x64
- debian-package-armhf
diff --git a/deployment/debian-package-x64/pkg-src/changelog b/deployment/debian-package-x64/pkg-src/changelog
index 37171cf6c..5ba6bde1a 100644
--- a/deployment/debian-package-x64/pkg-src/changelog
+++ b/deployment/debian-package-x64/pkg-src/changelog
@@ -1,3 +1,9 @@
+jellyfin (10.5.3-1) unstable; urgency=medium
+
+ * New upstream version 10.5.3; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.5.3
+
+ -- Jellyfin Packaging Team <packaging@jellyfin.org> Sun, 05 Apr 2020 12:36:25 -0400
+
jellyfin (10.5.2-1) unstable; urgency=medium
* New upstream version 10.5.2; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.5.2
diff --git a/deployment/fedora-package-x64/pkg-src/jellyfin.spec b/deployment/fedora-package-x64/pkg-src/jellyfin.spec
index 4f638e7f8..9a59016b1 100644
--- a/deployment/fedora-package-x64/pkg-src/jellyfin.spec
+++ b/deployment/fedora-package-x64/pkg-src/jellyfin.spec
@@ -159,6 +159,8 @@ fi
%systemd_postun_with_restart jellyfin.service
%changelog
+* Sun Apr 05 2020 Jellyfin Packaging Team <packaging@jellyfin.org>
+- New upstream version 10.5.3; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.5.3
* Sun Mar 22 2020 Jellyfin Packaging Team <packaging@jellyfin.org>
- New upstream version 10.5.2; release changelog at https://github.com/jellyfin/jellyfin/releases/tag/v10.5.2
* Sun Mar 15 2020 Jellyfin Packaging Team <packaging@jellyfin.org>