Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.5.6 #174

Merged
merged 3 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
changelog:
categories:
- title: All Changes
labels:
- "*"
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

# v0.5.6

### What's New

- .{md,wiki,pikchr} files preview is automatically updated on editor/file switch

### Bug Fix

- pikchr syntax highlighting is ready, please report any issues now.
- some text wasn't rendered in the preview window


# v0.5.5

### What's New
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ about cloning from the extension.

* Undo/Redo.

* Preview md and wiki files
* Preview `md`, `wiki` and `pikchr` files

* Syntax highlighting for `pikchr` language

* Use command palette `Ctrl-Shift-P` >> `fossil:` to see all commands. (Not everything has a UI control.)

Expand Down
23 changes: 20 additions & 3 deletions docs/dev/release.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@
# How to release vscode-fossil extension

## Desribe the changes
1. Update version in `package.json`
1. Update `CHANGELOG.md`


## Ensure everything is working
1. Run tests: `npm run test`
1. Remove out directory: `rm -rf out`
1. Create package (.vsix file): `npm run package`
1. Ensure all files are there: `unzip -l fossil-#.#.#.vsix`. There should only be TWO .js files.


## Make commits

1. Create a brunch `git switch --create $USER-release-#.#.#`
1. Make a commit 'release: #.#.#'
1. Push commit on master
1. Make a pull request
1. "Merge and rebase" on a successful pull request
1. Switch to `master`
1. Tag `git tag v#.#.#; git push origin $_`
1. Upload to https://marketplace.visualstudio.com/manage/publishers/koog1000
1. Upload to https://open-vsx.org/extension/koog1000/fossil


## Release
1. Download .vsix file from github "Releases"*
1. Upload it to https://marketplace.visualstudio.com/manage/publishers/koog1000
1. Upload it to https://open-vsx.org/extension/koog1000/fossil

Storing tokens
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"bugs": {
"url": "https://github.com/koog1000/vscode-fossil/issues"
},
"version": "0.5.5",
"version": "0.5.6",
"engines": {
"vscode": "^1.36.0"
},
Expand Down