Skip to content

Commit

Permalink
chore: release v4.0.3
Browse files Browse the repository at this point in the history
Signed-off-by: 1111mp <[email protected]>
  • Loading branch information
1111mp committed Nov 6, 2024
1 parent 5ccd5c7 commit c0536dd
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
18 changes: 18 additions & 0 deletions UPDATELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## v4.0.3

### Features

- versions released in the past three days are marked with dots
- open the project using vscode [#135](https://github.com/1111mp/nvm-desktop/issues/135)

### Bug Fixes

- the interface cannot be interacted with [#124](https://github.com/1111mp/nvm-desktop/issues/124)
- can't add shortcuts on linux [#137](https://github.com/1111mp/nvm-desktop/issues/137)
- chmod nvmd binary [#138](https://github.com/1111mp/nvm-desktop/issues/138)
- removing a project fails when the .nvmdrc file does not exist under the project [#136](https://github.com/1111mp/nvm-desktop/issues/136)

---

## v4.0.2

### Features
Expand All @@ -12,6 +28,8 @@
- `nvmd use {version} --project` throws an error when `".nvmd/projects.json"` does not exist [#130](https://github.com/1111mp/nvm-desktop/issues/130)
- give more friendly error messages [#128](https://github.com/1111mp/nvm-desktop/issues/128)

---

## v4.0.1

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nvm-desktop",
"private": true,
"version": "4.0.2",
"version": "4.0.3",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nvm-desktop"
version = "4.0.2"
version = "4.0.3"
description = "Node Version Manager Desktop - A desktop application to manage multiple active node.js versions."
authors = ["[email protected]"]
license = "GPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/utils/migrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use tokio::time::sleep;
use super::{dirs, help};
use crate::core::handle;

const CURRENT_MIGRATION_VERSION: i16 = 16;
const CURRENT_MIGRATION_VERSION: i16 = 17;
const NODE_DEFAULT_EXECUTE: [&str; 4] = ["node", "npm", "npx", "corepack"];

pub async fn init() -> Result<()> {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "NVM Desktop",
"version": "4.0.2",
"version": "4.0.3",
"identifier": "io.github.1111mp.nvm-desktop",
"build": {
"beforeDevCommand": "pnpm ui:dev",
Expand Down

0 comments on commit c0536dd

Please sign in to comment.