Skip to content

Commit 1ae694f

Browse files
authored
chore(main): release 1.0.0 (#160)
1 parent d63681f commit 1ae694f

File tree

2 files changed

+30
-19
lines changed

2 files changed

+30
-19
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [1.0.0](https://github.com/hverlin/mise-vscode/compare/v0.61.0...v1.0.0) (2025-11-02)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Set mise.configureExtensionsAutomatically to false by default
9+
10+
### Features
11+
12+
* Set mise.configureExtensionsAutomatically to false by default ([cf33381](https://github.com/hverlin/mise-vscode/commit/cf3338165f708cacc3ebdb6a3930e1587488e6bc))
13+
314
## [0.61.0](https://github.com/hverlin/mise-vscode/compare/v0.60.0...v0.61.0) (2025-11-02)
415

516

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Mise VSCode",
44
"publisher": "hverlin",
55
"description": "mise support for Visual Studio code (dev-tools, tasks and environment variables)",
6-
"version": "0.61.0",
6+
"version": "1.0.0",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/hverlin/mise-vscode"
@@ -124,16 +124,16 @@
124124
"id": "mise-getting-started",
125125
"title": "Mise VSCode setup",
126126
"description": "Important steps to get started with the Mise VSCode extension.",
127-
"when": "!isWeb",
128-
"steps": [
127+
"when": "!isWeb",
128+
"steps": [
129129
{
130130
"id": "auto-configure",
131131
"title": "Auto-Configure Extensions",
132132
"description": "Choose whether to automatically configure VSCode extensions to use tools from mise.\n[Open settings](command:mise.openExtensionSettings)",
133133
"media": {
134134
"markdown": "walkthrough/auto-configure.md"
135135
},
136-
"when": "!isWeb"
136+
"when": "!isWeb"
137137
},
138138
{
139139
"id": "explore",
@@ -142,7 +142,7 @@
142142
"media": {
143143
"markdown": "walkthrough/explore.md"
144144
},
145-
"when": "!isWeb"
145+
"when": "!isWeb"
146146
}
147147
]
148148
}
@@ -268,27 +268,27 @@
268268
"default": false,
269269
"markdownDescription": "Create symlinks in your `.vscode` folder that links to the `mise` bin.\n\nThis is useful if you share the `.vscode/settings.json` file with others. When the project is version controlled:\n- every user must have the extension installed\n- the directory `.vscode/mise-tools` must be excluded from version control."
270270
},
271-
"mise.checkForNewMiseVersion": {
272-
"order": 8,
273-
"type": "boolean",
274-
"title": "Check for new mise version",
275-
"default": true,
276-
"markdownDescription": "Check if a new mise version is available on startup."
277-
},
271+
"mise.checkForNewMiseVersion": {
272+
"order": 8,
273+
"type": "boolean",
274+
"title": "Check for new mise version",
275+
"default": true,
276+
"markdownDescription": "Check if a new mise version is available on startup."
277+
},
278278
"mise.showToolVersionsDecorations": {
279279
"order": 9,
280280
"type": "boolean",
281281
"title": "Show tool versions",
282282
"default": true,
283283
"markdownDescription": "Show tool versions in the editor. (requires reload)"
284284
},
285-
"mise.enableCodeLens": {
286-
"order": 10,
287-
"type": "boolean",
288-
"title": "Enable code lens",
289-
"default": true,
290-
"markdownDescription": "Show run/add tool code lens indicators in the editor."
291-
},
285+
"mise.enableCodeLens": {
286+
"order": 10,
287+
"type": "boolean",
288+
"title": "Enable code lens",
289+
"default": true,
290+
"markdownDescription": "Show run/add tool code lens indicators in the editor."
291+
},
292292
"mise.showNotificationIfMissingTools": {
293293
"order": 11,
294294
"type": "boolean",

0 commit comments

Comments
 (0)