Skip to content

Commit ad9472e

Browse files
authored
update version and changelog (#178)
* update version and changelog * update release ci
1 parent 2ca6922 commit ad9472e

File tree

3 files changed

+26
-22
lines changed

3 files changed

+26
-22
lines changed

.github/workflows/release.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#name: Release
44

5-
# Controls when the action will run.
5+
# Controls when the action will run.
66
#on:
77
# Triggers the workflow on push or pull request events but only for the main branch
88
#push:
@@ -34,7 +34,7 @@ jobs:
3434
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3535
- uses: actions/checkout@v2
3636
- run: npm install
37-
37+
3838
#- name: Current NPM Package Version
3939
#- uses: justincy/[email protected]
4040
# id: info
@@ -47,22 +47,7 @@ jobs:
4747
- uses: lannonbr/vsce-action@master
4848
with:
4949
args: "package"
50-
51-
# Note: This works but you can't unpublish something so if the next thing fails, you're just stuck.
52-
#- name: Publish to Open VSX Registry
53-
# uses: HaaLeo/publish-vscode-extension@v1
54-
# id: publishOpenVSX
55-
# with:
56-
# pat: ${{ secrets.OPEN_VSX_TOKEN }}
5750

58-
# Note: Probably should publish VS Marketplace first since, OpenVSX is proved working.
59-
#- name: Publish to Visual Studio Marketplace
60-
# uses: HaaLeo/publish-vscode-extension@v1
61-
# with:
62-
# pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
63-
# registryUrl: https://marketplace.visualstudio.com
64-
# extensionFile: ${{ steps.publishOpenVSX.outputs.vsixPath }}
65-
6651
- name: Create Release
6752
id: create_release
6853
uses: actions/create-release@v1
@@ -73,15 +58,30 @@ jobs:
7358
release_name: ${{ steps.ver.outputs.packageVersion }} Release
7459
draft: true
7560
prerelease: true
76-
61+
7762
- name: Upload Release Asset
78-
id: upload-release-asset
63+
id: upload-release-asset
7964
uses: actions/upload-release-asset@v1
8065
env:
8166
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8267
with:
83-
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
68+
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
8469
#asset_path: ${{ steps.publishOpenVSX.outputs.vsixPath }} # Need to get this version number dynamically
8570
asset_path: ./vscode-nushell-lang-${{ steps.ver.outputs.packageVersion }}.vsix # Need to get this version number dynamically
8671
asset_name: vscode-nushell-lang-${{ steps.ver.outputs.packageVersion }}.vsix
8772
asset_content_type: application/vsix
73+
74+
# Note: Probably should publish VS Marketplace first since, OpenVSX is proved working.
75+
#- name: Publish to Visual Studio Marketplace
76+
# uses: HaaLeo/publish-vscode-extension@v1
77+
# with:
78+
# pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
79+
# registryUrl: https://marketplace.visualstudio.com
80+
# extensionFile: ${{ steps.publishOpenVSX.outputs.vsixPath }}
81+
82+
# Note: This works but you can't unpublish something so if the next thing fails, you're just stuck.
83+
- name: Publish to Open VSX Registry
84+
uses: HaaLeo/publish-vscode-extension@v1
85+
id: publishOpenVSX
86+
with:
87+
pat: ${{ secrets.OPEN_VSX_TOKEN }}

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,8 @@ All notable changes to the "vscode-nushell-lang" extension will be documented in
162162
- Syntax highlight: add "export" to "module" (@glcraft) [#166](https://github.com/nushell/vscode-nushell-lang/pull/166)
163163
- Improve type parsing in function def (@glcraft) [#167](https://github.com/nushell/vscode-nushell-lang/pull/167)
164164
- Textmate improvements (@glcraft) [#168](https://github.com/nushell/vscode-nushell-lang/pull/168)
165-
- Textmate: improvement on record entries and closure (@glcraft) [#169](https://github.com/nushell/vscode-nushell-lang/pull/169)
165+
- Textmate: improvement on record entries and closure (@glcraft) [#169](https://github.com/nushell/vscode-nushell-lang/pull/169)
166+
- 1.9.0
167+
- Add spread to syntax highlighting [#174](https://github.com/nushell/vscode-nushell-lang/pull/174)
168+
- fix markdown formatting for hover lsp [#175](https://github.com/nushell/vscode-nushell-lang/pull/175)
169+
- update grammar for nushell 0.91.0 [#177](https://github.com/nushell/vscode-nushell-lang/pull/177)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "vscode-nushell-lang",
44
"description": "nushell language for vscode",
55
"author": "The Nushell Project Developers",
6-
"version": "1.8.0",
6+
"version": "1.9.0",
77
"preview": false,
88
"license": "MIT",
99
"publisher": "TheNuProjectContributors",

0 commit comments

Comments
 (0)