Skip to content

Commit

Permalink
Release v0.4.1 take 2 (#38)
Browse files Browse the repository at this point in the history
* Move release instructions out of readme

* Cleanup
  • Loading branch information
robsimmons authored Jul 24, 2023
1 parent 681e3b7 commit 8ae0c02
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
13 changes: 5 additions & 8 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,14 @@

(This probably includes some redundancy, they're just notes to self so I remember how to do this.)

**FIRST**, change package.json to reflect the new version number, then:

```
npm install
npm run nearley
npm run test
```

Change package.json to reflect the new version number, then:

```
npm install
npm run build
npm run prettier
git checkout -b <### whatever ###>
git commit -a -m "New version"
git push --set-upstream origin <### whatever ###>
Expand All @@ -23,8 +20,8 @@ Merge that, then:
```
git checkout main
git pull
git tag v0.4.0
git push --tags
git tag <### vX.X.X ###>
git push <### vX.X.X ###>
npm run build
npm publish
```
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tutch",
"version": "0.4.0",
"version": "0.4.1",
"description": "Typescript implementation of Tutch, a TUTorial proof CHecker.",
"main": "dist/index.js",
"types": "dist/index.d.js",
Expand Down

0 comments on commit 8ae0c02

Please sign in to comment.