From 20aa26506740548f1ede99146a4f5a88bf6c210f Mon Sep 17 00:00:00 2001 From: Mikhail Babynichev Date: Wed, 7 Aug 2024 12:05:37 +0300 Subject: [PATCH] chore(release): 3.0.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ package.json | 2 +- packages/tosu/package.json | 4 ++-- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87f5a1d..ffc6d17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [3.0.0](https://github.com/KotRikD/tosu/compare/v2.10.0...v3.0.0) (2024-08-07) + + +### ⚠ BREAKING CHANGES + +* add linux support + +### Features + +* add linux support ([dd9f243](https://github.com/KotRikD/tosu/commit/dd9f243662c691a5cb299a6ce6c22b7ebd5bdf11)) +* batch pattern scan and various small fixes ([0521911](https://github.com/KotRikD/tosu/commit/05219118734842acf5b0160f422471cd1a2e1241)) +* semicolon ([739d081](https://github.com/KotRikD/tosu/commit/739d0815047d1f757ff541add8592f3e4a264996)) + + +### Bug Fixes + +* Check sudo permissions on linux ([5b952e4](https://github.com/KotRikD/tosu/commit/5b952e41d0725b1bd0278c09fb44dd472c411b87)) +* Fix path issue for `config.ini` and `static` folder ([41d0093](https://github.com/KotRikD/tosu/commit/41d0093431066e598ca1016cc2d6acb5f5de9974)) +* Fix path to osu!.exe for linux ([2146ad8](https://github.com/KotRikD/tosu/commit/2146ad8efb800b7ded40dbd5bf9e7239b14cd3f8)) +* remove sudo enforcement ([39373bd](https://github.com/KotRikD/tosu/commit/39373bdba5d289d00738b13cb0ec9549776e4800)) +* update game time pattern ([cf6d758](https://github.com/KotRikD/tosu/commit/cf6d7584307b6df0cf10acaf05c43b79d70df67e)) + ## [2.10.0](https://github.com/KotRikD/tosu/compare/v2.9.2...v2.10.0) (2024-07-29) diff --git a/package.json b/package.json index b8e6566..4dbac4e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "author": "Mikhail Babynichev", "license": "GPL-3.0", - "version": "2.10.0", + "version": "3.0.0", "packageManager": "pnpm@8.15.4", "scripts": { "prepare": "husky install", diff --git a/packages/tosu/package.json b/packages/tosu/package.json index 06f0660..4fc4bb4 100644 --- a/packages/tosu/package.json +++ b/packages/tosu/package.json @@ -1,6 +1,6 @@ { "name": "tosu", - "version": "2.10.0", + "version": "3.0.0", "main": "dist/index.js", "bin": "dist/index.js", "scripts": { @@ -10,7 +10,7 @@ "run:dev": "pnpm run genver && pnpm run ts:run src/index.ts", "compile:prepare-htmls": "cp -rf node_modules/@tosu/server/assets ./dist", "compile:win": "pnpm run genver && pnpm run ts:compile && pnpm run compile:prepare-htmls && pkg --output dist/tosu.exe --debug --config pkg.win.json --compress brotli dist/index.js && pnpm run ts:run src/postBuild.ts", - "compile:linux": "pnpm run genver && pnpm run ts:compile && pnpm run compile:prepare-htmls && pkg --output dist/tosu --debug --config pkg.linux.json --compress brotli dist/index.js" + "compile:linux": "pnpm run genver && pnpm run ts:compile && pnpm run compile:prepare-htmls && pkg --output dist/tosu --debug --config pkg.linux.json --compress brotli dist/index.js" }, "dependencies": { "@tosu/common": "workspace:*",