Skip to content

Commit

Permalink
chore(release): 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KotRikD committed Aug 7, 2024
1 parent e2f9f46 commit 20aa265
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Mikhail Babynichev",
"license": "GPL-3.0",
"version": "2.10.0",
"version": "3.0.0",
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky install",
Expand Down
4 changes: 2 additions & 2 deletions packages/tosu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tosu",
"version": "2.10.0",
"version": "3.0.0",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
Expand All @@ -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:*",
Expand Down

0 comments on commit 20aa265

Please sign in to comment.