Skip to content

Commit be157d5

Browse files
committed
Update to Version 12.40
1 parent f4ed2d4 commit be157d5

File tree

6 files changed

+197
-33
lines changed

6 files changed

+197
-33
lines changed

.github/workflows/node.js.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
matrix:
1818
#os: [ubuntu-latest, macos-latest, windows-latest]
1919
os: [ubuntu-latest]
20-
node-version: [10.x, 12.x, 14.x, 15.x]
20+
node-version: [12.x, 14.x, 16.x, 17.x]
2121
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
- name: Use Node.js ${{ matrix.node-version }}
26-
uses: actions/setup-node@v2
26+
uses: actions/setup-node@v3
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
scope: '@mcmics'

.github/workflows/npm-publish.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-node@v2
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 12
17+
node-version: 16
1818
scope: '@mcmics'
1919
- run: npm ci
2020
- run: npm test
@@ -23,10 +23,10 @@ jobs:
2323
needs: build
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2
27-
- uses: actions/setup-node@v2
26+
- uses: actions/checkout@v3
27+
- uses: actions/setup-node@v3
2828
with:
29-
node-version: 12
29+
node-version: 16
3030
registry-url: https://registry.npmjs.org/
3131
scope: '@mcmics'
3232
- run: npm ci
@@ -38,10 +38,10 @@ jobs:
3838
needs: build
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v2
42-
- uses: actions/setup-node@v2
41+
- uses: actions/checkout@v3
42+
- uses: actions/setup-node@v3
4343
with:
44-
node-version: 12
44+
node-version: 16
4545
registry-url: https://npm.pkg.github.com/
4646
scope: '@mcmics'
4747
- run: npm ci

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ Fork of [https://github.com/Sobesednik/dist-exiftool](https://github.com/Sobesed
44
A distribution of _exiftool_. Depending on the platform, it will install
55
either [exiftool.pl](https://www.npmjs.com/package/@mcmics/exiftool.pl) or
66
[exiftool.exe](https://www.npmjs.com/package/@mcmics/exiftool.exe) module.
7-
Current version is 12.24.
7+
Current version is 12.40.
88

99
[![npm version](https://badge.fury.io/js/%40mcmics%2Fdist-exiftool.svg)](https://badge.fury.io/js/%40mcmics%2Fdist-exiftool)
10-
[![Build Status](https://api.travis-ci.com/MCMicS/dist-exiftool.svg?branch=master)](https://travis-ci.com/github/MCMicS/dist-exiftool)
10+
[![Build Status](https://app.travis-ci.com/MCMicS/dist-exiftool.svg?branch=master)](https://app.travis-ci.com/MCMicS/dist-exiftool)
1111
[![Build status](https://ci.appveyor.com/api/projects/status/aey678ctf4uj8rec/branch/master?svg=true)](https://ci.appveyor.com/project/MCMicS/dist-exiftool/branch/master)
1212

1313
## Usage

package-lock.json

+172-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@mcmics/dist-exiftool",
3-
"version": "12.24.0",
3+
"version": "12.40.0",
44
"description": "Platform-dependent distribution of exiftool.",
55
"main": "index.js",
66
"scripts": {
77
"postinstall": "platform-dependent-modules",
8-
"test": "cross-env ZOROASTER_TIMEOUT=20000 zoroaster test"
8+
"test": "zoroaster --timeout 10000 test"
99
},
1010
"repository": {
1111
"type": "git",
@@ -28,25 +28,25 @@
2828
"platform-dependent-modules": "0.0.14"
2929
},
3030
"optionalDependencies": {
31-
"@mcmics/exiftool.exe": "12.24",
32-
"@mcmics/exiftool.pl": "12.24"
31+
"@mcmics/exiftool.exe": "12.40",
32+
"@mcmics/exiftool.pl": "12.40"
3333
},
3434
"config": {
3535
"platformDependentModules": {
3636
"linux": [
37-
"@mcmics/exiftool.pl@12.24"
37+
"@mcmics/exiftool.pl@12.40"
3838
],
3939
"win32": [
40-
"@mcmics/exiftool.exe@12.24"
40+
"@mcmics/exiftool.exe@12.40"
4141
],
4242
"darwin": [
43-
"@mcmics/exiftool.pl@12.24"
43+
"@mcmics/exiftool.pl@12.40"
4444
],
4545
"freebsd": [
46-
"@mcmics/exiftool.pl@12.24"
46+
"@mcmics/exiftool.pl@12.40"
4747
],
4848
"sunos": [
49-
"@mcmics/exiftool.pl@12.24"
49+
"@mcmics/exiftool.pl@12.40"
5050
]
5151
}
5252
}

test/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ module.exports = {
3232
assert.equal(res.stderr.trim(), stderrData)
3333
})
3434
},
35-
'should have version 12.24': () => {
35+
'should have version 12.40': () => {
3636
return exec(exiftool, ['-ver'])
3737
.then((res) => {
38-
assert.equal(res.stdout.trim(), '12.24')
38+
assert.equal(res.stdout.trim(), '12.40')
3939
})
4040
},
4141
}

0 commit comments

Comments
 (0)