-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: improve RELEASE.md, add tact-sublime (#403)
- Loading branch information
1 parent
63f7065
commit 68531db
Showing
1 changed file
with
14 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,33 @@ | ||
# Tact release checklist template | ||
|
||
- [ ] Improve the changelog for `vX.Y.Z`: grammar, wording, polishing | ||
- [ ] Make sure there are no open issues for the [vX.Y.Z milestone](https://github.com/tact-lang/tact/issues?q=is%3Aopen+is%3Aissue+milestone%3AvX.Y.Z) | ||
(except for the current one, of course) | ||
- [ ] Make sure there are no open issues for the [vX.Y.Z milestone](https://github.com/tact-lang/tact/issues?q=is%3Aopen+is%3Aissue+milestone%3AvX.Y.Z) (except for the current one, of course) | ||
- [ ] Bump Tact version in: | ||
- [ ] [`package.json`](./package.json) file | ||
- [ ] [CHANGELOG.md](./CHANGELOG.md): `Unreleased` -> `vX.Y.Z` | ||
- [ ] Tag the new `vX.Y.Z` release in Git | ||
```shell | ||
$ git tag -a vX.Y.Z | ||
$ git tag vX.Y.Z | ||
$ git push origin vX.Y.Z | ||
``` | ||
- [ ] Create the new `vX.Y.Z` release on GitHub: <https://github.com/tact-lang/tact/releases> | ||
- [ ] Publish the new `vX.Y.Z` release on NPM: | ||
[@tact-lang/compiler](https://www.npmjs.com/package/@tact-lang/compiler) | ||
- [ ] Publish the new `vX.Y.Z` release on NPM: [@tact-lang/compiler](https://www.npmjs.com/package/@tact-lang/compiler) | ||
```shell | ||
$ git checkout vX.Y.Z | ||
$ yarn all && npm publish | ||
``` | ||
- [ ] Update [tact-docs](https://github.com/tact-lang/tact-docs) with the most recent Tact features | ||
- [ ] Update [tact-docs](https://github.com/tact-lang/tact-docs) with the most recent Tact features (tracked in: ) | ||
- [ ] Request or perform the plugins/parsers/tools updates and releases: | ||
- [ ] <https://github.com/tact-lang/tree-sitter-tact> | ||
- [ ] <https://github.com/tact-lang/tact.vim> | ||
- [ ] <https://github.com/tact-lang/tact-template> | ||
- [ ] <https://github.com/tact-lang/tact-vscode> | ||
- [ ] <https://github.com/tact-lang/tact-template> (tracked in: ) | ||
- [ ] <https://github.com/tact-lang/tree-sitter-tact> (tracked in: ) | ||
- [ ] <https://github.com/tact-lang/tact.vim> (tracked in: ) | ||
- [ ] <https://github.com/tact-lang/tact-sublime> (tracked in: ) | ||
- [ ] <https://github.com/tact-lang/tact-vscode> (tracked in: ) | ||
- [ ] A new release of [tact-vscode](https://marketplace.visualstudio.com/items?itemName=KonVik.tact-lang-vscode) on the Visual Studio Marketplace | ||
- [ ] <https://github.com/novusnota/prism-ton> | ||
- [ ] <https://github.com/nujan-io/nujan-ide> | ||
- [ ] <https://github.com/ton-org/blueprint> | ||
- [ ] <https://github.com/ton-blockchain/intellij-ton> | ||
- [ ] Write `vX.Y.Z` release notes explaining the newest changes with code examples and commit those to this repository | ||
- [ ] <https://github.com/novusnota/prism-ton> (tracked in: ) | ||
- [ ] <https://github.com/nujan-io/nujan-ide> (tracked in: ) | ||
- [ ] <https://github.com/ton-org/blueprint> (tracked in: ) | ||
- [ ] <https://github.com/ton-blockchain/intellij-ton> (tracked in: ) | ||
- [ ] Write `vX.Y.Z` release notes explaining the newest changes with code examples | ||
- [ ] [TON Dev News](https://t.me/tondev_news) Telegram channel announcement | ||
- [ ] Accumulate TON dev chats feedback |