Skip to content

Commit 189faae

Browse files
author
Ben Blackmore
committed
Prepare 1.4.1
1 parent 0b11585 commit 189faae

File tree

5 files changed

+25
-16
lines changed

5 files changed

+25
-16
lines changed

.github/workflows/verify.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Verify
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v2
16+
with:
17+
node-version: '16.13.1'
18+
cache: 'npm'
19+
- run: npm install
20+
- run: npm test

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.4.1
4+
- Fix issues caused by `uv_hrtime()` returning a value that is greater than the max possible `uint32` value.
5+
36
## 1.4.0
47
- Expose TypeScript types.
58

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2020 Ben Blackmore and contributors
3+
Copyright (c) 2015-2022 Ben Blackmore and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"scripts": {
2020
"install": "node-gyp rebuild",
2121
"rebuild": "node-gyp rebuild",
22-
"test": "mocha && tsc --noEmit --strict --esModuleInterop --module=commonjs test/types.ts"
22+
"test": "mocha && tsc --noEmit --strict --esModuleInterop --module commonjs test/types.ts"
2323
},
2424
"engines": {
2525
"node": ">=4.0.0"

0 commit comments

Comments
 (0)