File tree Expand file tree Collapse file tree 4 files changed +52
-13
lines changed Expand file tree Collapse file tree 4 files changed +52
-13
lines changed Original file line number Diff line number Diff line change 1
1
language : rust
2
2
rust :
3
- - 1.41 .0
3
+ - 1.48 .0
4
4
5
5
services :
6
6
- docker
@@ -77,12 +77,42 @@ jobs:
77
77
- rustup target add x86_64-pc-windows-msvc
78
78
- source .travis_scripts/maybe-install-node.sh
79
79
if : tag =~ /^\d+\.\d+\.\d+/ OR branch = main OR type = pull_request
80
+ - name : " Linux - Node 14 - glibc"
81
+ os : linux
82
+ env :
83
+ - TRAVIS_NODE_VERSION="14"
84
+ - SKIP_DEPLOY=0
85
+ if : tag =~ /^\d+\.\d+\.\d+/ OR branch = main OR type = pull_request
86
+ - name : " Linux - Node 14 - musl"
87
+ os : linux
88
+ env :
89
+ - SKIP_DEPLOY=0
90
+ - IMAGE=14-alpine
91
+ - INDOCKER="docker exec target"
92
+ if : tag =~ /^\d+\.\d+\.\d+/ OR branch = main OR type = pull_request
93
+ - name : " OSX - Node 14"
94
+ os : osx
95
+ env :
96
+ - TRAVIS_NODE_VERSION="14"
97
+ - SKIP_DEPLOY=0
98
+ if : tag =~ /^\d+\.\d+\.\d+/ OR branch = main OR type = pull_request
99
+ - name : " Windows - Node 14"
100
+ os : windows
101
+ env :
102
+ # Stop Windows builds from hanging after completion https://travis-ci.community/t/timeout-after-build-finished-and-succeeded/1336
103
+ - YARN_GPG=no
104
+ - TRAVIS_NODE_VERSION="14"
105
+ - SKIP_DEPLOY=0
106
+ install :
107
+ - rustup target add x86_64-pc-windows-msvc
108
+ - source .travis_scripts/maybe-install-node.sh
109
+ if : tag =~ /^\d+\.\d+\.\d+/ OR branch = main OR type = pull_request
80
110
# Publish to npm only on release tag
81
111
- stage : publish
82
112
name : " Publish to npm"
83
113
os : linux
84
114
env :
85
- - TRAVIS_NODE_VERSION="10 "
115
+ - TRAVIS_NODE_VERSION="14 "
86
116
- SKIP_DEPLOY=1
87
117
88
118
# NPM_TOKEN
Original file line number Diff line number Diff line change
1
+ ## 0.7.3
2
+
3
+ ### Breaking Changes
4
+
5
+ None
6
+
7
+ ### Changed
8
+
9
+ - Added support for Node 14.
10
+
1
11
## 0.7.2
2
12
3
13
### Changed
4
14
5
- - Updated all JS and Rust library dependencies
15
+ - Updated all JS and Rust library dependencies
6
16
7
17
## 0.7.1
8
18
9
19
### Changed
10
20
11
- - Added support for Node 10/12 on Windows
21
+ - Added support for Node 10/12 on Windows
12
22
13
23
## 0.7.0
14
24
Original file line number Diff line number Diff line change @@ -9,13 +9,12 @@ This library uses the [Neon Bindings](https://www.neon-bindings.com) toolchain t
9
9
10
10
## Supported Platforms
11
11
12
- | | Node 10 | Node 12 |
13
- | --------------------- | ------- | ------- |
14
- | Linux x64 - glibc | ✓ | ✓ |
15
- | Linux x64 - musl-libc | ✓ | ✓ |
16
- | OSX x64 | ✓ | ✓ |
17
- | Windows x64 | ✓ | ✓ |
18
- | Windows x64 | ✓ | ✓ |
12
+ | | Node 10 | Node 12 | Node 14 |
13
+ | --------------------- | ------- | ------- | ------- |
14
+ | Linux x64 - glibc | ✓ | ✓ | ✓ |
15
+ | Linux x64 - musl-libc | ✓ | ✓ | ✓ |
16
+ | OSX x64 | ✓ | ✓ | ✓ |
17
+ | Windows x64 | ✓ | ✓ | ✓ |
19
18
20
19
## Install
21
20
@@ -108,7 +107,7 @@ npm run compile
108
107
or
109
108
110
109
```
111
- yarn run compile
110
+ yarn compile
112
111
```
113
112
114
113
This will produce an ` index.node ` file within the ` native ` directory. This file can then be included within a NodeJS file by simply requiring the file, e.g.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @ironcorelabs/recrypt-node-binding" ,
3
- "version" : " 0.7.2 " ,
3
+ "version" : " 0.7.3 " ,
4
4
"description" : " Bindings to allow the recrypt-rs library to work via NodeJS." ,
5
5
"repository" : {
6
6
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments