From 6389e449f2ba4b0a17a8065b10b94edeec41e871 Mon Sep 17 00:00:00 2001 From: WardPearce Date: Wed, 5 Feb 2025 18:28:12 +1300 Subject: [PATCH] Bump version to 1.7.5 --- materialious/android/app/build.gradle | 4 ++-- materialious/electron/package.json | 2 +- materialious/package.json | 4 ++-- update_versions.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/materialious/android/app/build.gradle b/materialious/android/app/build.gradle index 08130295..910c19a3 100644 --- a/materialious/android/app/build.gradle +++ b/materialious/android/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "us.materialio.app" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 86 - versionName "1.7.4" + versionCode 87 + versionName "1.7.5" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/materialious/electron/package.json b/materialious/electron/package.json index 0538459f..15b87d58 100644 --- a/materialious/electron/package.json +++ b/materialious/electron/package.json @@ -1,6 +1,6 @@ { "name": "Materialious", - "version": "1.7.4", + "version": "1.7.5", "description": "Modern material design for Invidious.", "author": { "name": "Ward Pearce", diff --git a/materialious/package.json b/materialious/package.json index 0817f15c..f62f5c13 100644 --- a/materialious/package.json +++ b/materialious/package.json @@ -1,6 +1,6 @@ { "name": "materialious", - "version": "1.7.4", + "version": "1.7.5", "private": true, "scripts": { "dev": "vite dev", @@ -75,4 +75,4 @@ "vidstack": "^1.12.9", "youtubei.js": "^12.2.0" } -} +} \ No newline at end of file diff --git a/update_versions.py b/update_versions.py index 6508efb3..cec44660 100644 --- a/update_versions.py +++ b/update_versions.py @@ -5,7 +5,7 @@ import json import os import re -LATEST_VERSION = "1.7.4" +LATEST_VERSION = "1.7.5" WORKING_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "materialious") ROOT_PACKAGE = os.path.join(WORKING_DIR, "package.json")