Skip to content

Commit

Permalink
Prepare 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Blackmore committed Jan 21, 2022
1 parent 0b11585 commit 189faae
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 16 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Verify

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16.13.1'
cache: 'npm'
- run: npm install
- run: npm test
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.4.1
- Fix issues caused by `uv_hrtime()` returning a value that is greater than the max possible `uint32` value.

## 1.4.0
- Expose TypeScript types.

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"scripts": {
"install": "node-gyp rebuild",
"rebuild": "node-gyp rebuild",
"test": "mocha && tsc --noEmit --strict --esModuleInterop --module=commonjs test/types.ts"
"test": "mocha && tsc --noEmit --strict --esModuleInterop --module commonjs test/types.ts"
},
"engines": {
"node": ">=4.0.0"
Expand Down

0 comments on commit 189faae

Please sign in to comment.