Skip to content

Commit a01cb84

Browse files
authored
release: 1.1.0 (#4)
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent c12645a commit a01cb84

File tree

3 files changed

+30
-10
lines changed

3 files changed

+30
-10
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [1.1.0](https://github.com/flex-development/errnode/compare/1.0.1...1.1.0) (2022-12-29)
2+
3+
4+
### :sparkles: Features
5+
6+
* **enums:** `SystemErrorCode` ([d65c142](https://github.com/flex-development/errnode/commit/d65c142e5354c75b16c0807c5832d33d0ee8ee9f))
7+
* **interfaces:** `ErrnoException` ([c12645a](https://github.com/flex-development/errnode/commit/c12645ad71c5204291a12be009a7e44fcc293202))
8+
9+
10+
### :house_with_garden: Housekeeping
11+
12+
* **tests:** update file overviews ([b3ca4a7](https://github.com/flex-development/errnode/commit/b3ca4a7f8ec3661580d6d1deb4be7e7eb219f4a2))
13+
14+
15+
### :white_check_mark: Testing
16+
17+
* **enums:** [`ErrorCode`] update type test strategy ([964c15b](https://github.com/flex-development/errnode/commit/964c15b34452f3066722ec49c750e048d2ade699))
18+
119
## [1.0.1](https://github.com/flex-development/errnode/compare/1.0.0...1.0.1) (2022-12-28)
220

321

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@flex-development/errnode",
33
"description": "Utilities for creating Node.js errors",
4-
"version": "1.0.1",
4+
"version": "1.1.0",
55
"keywords": [
66
"error",
77
"node",

scripts/release.sh

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22

33
# Local Release Workflow
44

5-
# 1. run tests
6-
# 2. pack project
7-
# 3. get new package version
8-
# 4. get release branch name
9-
# 5. switch to release branch
10-
# 6. stage changes
11-
# 7. commit changes
12-
# 8. push release branch to origin
13-
# 9. cleanup
5+
# 1. run typecheck
6+
# 2. run tests
7+
# 3. pack project
8+
# 4. get new package version
9+
# 5. get release branch name
10+
# 6. switch to release branch
11+
# 7. stage changes
12+
# 8. commit changes
13+
# 9. push release branch to origin
14+
# 10. cleanup
1415

16+
yarn typecheck
1517
yarn test:cov
1618
yarn pack -o %s-%v.tgz
1719
VERSION=$(jq .version package.json -r)

0 commit comments

Comments
 (0)