Skip to content

Commit

Permalink
fix(vscode-extension): Fix publisher name and version (#553)
Browse files Browse the repository at this point in the history
<!--
Pull requests are squash merged using:
- their title as the commit message
- their description as the commit body

Having a good title and description is important for the users to get
readable changelog and understand when they need to update his code and
how.
-->

- Change the publisher name to **metatypedev** to match the account name
on Azure Devops.
- Add dev-tools projects to `dev/lock.yml` for automatic versioning.

#### Motivation and context

*
[Failure](https://github.com/metatypedev/metatype/actions/runs/7522189733/job/20473888302)
to publish the extension.
* Non-matching version.

#### Migration notes

_Blank_

### Checklist

- [ ] ~The change come with new or modified tests~ _(N/A)_
- [ ] ~Hard-to-understand functions have explanatory comments~ _(N/A)_
- [ ] ~End-user documentation is updated to reflect the change~ _(N/A)_
  • Loading branch information
Natoandro authored Jan 15, 2024
1 parent e5c2a93 commit 976fde6
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 28 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

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

Binary file removed dev-tools/metatype-devtools-0.2.5.vsix
Binary file not shown.
5 changes: 3 additions & 2 deletions dev-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "metatype-devtools",
"author": "Metatype Team",
"version": "0.2.5",
"version": "0.3.2",
"description": "Metatype Devtools",
"repository": {
"type": "git",
"url": "https://github.com/metatypedev/metatype"
},
"publisher": "metatype",
"publisher": "metatypedev",
"engines": {
"vscode": "^1.75.0"
},
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/ts-language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "typegraph-ts-server",
"description": "TypeScript language server for TypeGraph",
"author": "Metatype Team",
"version": "0.2.5",
"version": "0.3.2",
"repository": {
"type": "git",
"url": "https://github.com/metatypedev/metatype"
Expand Down
4 changes: 2 additions & 2 deletions dev-tools/vscode-metatype-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"name": "vscode-metatype-support",
"description": "VSCode extension for Metatype support",
"author": "Metatype Team",
"version": "0.2.5",
"version": "0.3.2",
"repository": {
"type": "git",
"url": "https://github.com/metatypedev/metatype"
},
"publisher": "metatype",
"publisher": "metatypedev",
"engines": {
"vscode": "^1.75.0"
},
Expand Down
6 changes: 6 additions & 0 deletions dev/lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ dev:
'( GHJK_VERSION: ").+(")': GHJK_VERSION
'( DENO_VERSION: ").+(")': DENO_VERSION
'([\s-]+uses:\s+metatypedev/setup-ghjk@).+()': GHJK_ACTION_VERSION
dev-tools/package.json:
'(\s*"version"\s*:\s*").+(",?)': METATYPE_VERSION
dev-tools/ts-language-server/package.json:
'(\s*"version"\s*:\s*").+(",?)': METATYPE_VERSION
dev-tools/vscode-metatype-support/package.json:
'(\s*"version"\s*:\s*").+(",?)': METATYPE_VERSION
typegraph/python/typegraph/__init__.py:
(version = ").+("): METATYPE_VERSION
typegraph/node/sdk/package.json:
Expand Down

0 comments on commit 976fde6

Please sign in to comment.