From 9072fd4f7a2cc7c6bb9ada8528148decabcff262 Mon Sep 17 00:00:00 2001 From: Cade Ayres Date: Sat, 16 Nov 2024 17:20:09 +0000 Subject: [PATCH] Updated CHANGELOG and versions (#1558) --- CHANGELOG.md | 5 +++++ package.json | 2 +- src/_managerinf/ManagerInformation.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a6a08d73..cb738d591 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ +### 3.1.54 +#### Bug fix +- Fixed profile import issue where entries were not found inside zips + ### 3.1.53 #### Games added - WEBFISHING +- SULFUR #### Other changes - BONELAB support should now function correctly diff --git a/package.json b/package.json index 69797535d..dfe514f1f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "r2modman", - "version": "3.1.53", + "version": "3.1.54", "description": "A simple and easy to use mod manager for many games using Thunderstore.", "productName": "r2modman", "author": "ebkr", diff --git a/src/_managerinf/ManagerInformation.ts b/src/_managerinf/ManagerInformation.ts index b68d2ee9a..057521102 100644 --- a/src/_managerinf/ManagerInformation.ts +++ b/src/_managerinf/ManagerInformation.ts @@ -1,7 +1,7 @@ import VersionNumber from '../model/VersionNumber'; export default class ManagerInformation { - public static VERSION: VersionNumber = new VersionNumber('3.1.53'); + public static VERSION: VersionNumber = new VersionNumber('3.1.54'); public static IS_PORTABLE: boolean = false; public static APP_NAME: string = "r2modman"; }