Skip to content
This repository was archived by the owner on Jun 6, 2021. It is now read-only.

Commit adf946d

Browse files
committed
Bump to v2.4.0
1 parent e0d20e3 commit adf946d

File tree

4 files changed

+13
-21
lines changed

4 files changed

+13
-21
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
branches:
2-
only:
3-
- master
4-
51
language: node_js
62

73
os:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
All notable changes to this project will be documented in this file.
33
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [2.4.0] - 2018-07-31
6+
### Changed
7+
- Updated brotli from [v1.0.4] to [v1.0.5]
8+
- Replaced NAN with N-API
9+
10+
### Removed
11+
- Dropped support for Node 9
12+
513
## [2.3.2] - 2018-05-01
614
### Fixed
715
- Fixed pre-compiled binaries download script
@@ -270,6 +278,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
270278

271279
## [1.0.0] - 2015-10-18
272280

281+
[2.4.0]: https://github.com/MayhemYDG/iltorb/compare/v2.3.2...v2.4.0
273282
[2.3.2]: https://github.com/MayhemYDG/iltorb/compare/v2.3.1...v2.3.2
274283
[2.3.1]: https://github.com/MayhemYDG/iltorb/compare/v2.3.0...v2.3.1
275284
[2.3.0]: https://github.com/MayhemYDG/iltorb/compare/v2.2.0...v2.3.0
@@ -314,6 +323,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
314323
[1.0.1]: https://github.com/MayhemYDG/iltorb/compare/1.0.0...1.0.1
315324
[1.0.1]: https://github.com/MayhemYDG/iltorb/releases/tag/1.0.0
316325

326+
[v1.0.5]: https://github.com/google/brotli/releases/tag/v1.0.5
317327
[v1.0.4]: https://github.com/google/brotli/releases/tag/v1.0.4
318328
[v1.0.3]: https://github.com/google/brotli/releases/tag/v1.0.3
319329
[v1.0.2]: https://github.com/google/brotli/releases/tag/v1.0.2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iltorb",
3-
"version": "2.3.2",
3+
"version": "2.4.0",
44
"description": "Brotli compression/decompression with native bindings",
55
"homepage": "https://github.com/MayhemYDG/iltorb",
66
"bugs": "https://github.com/MayhemYDG/iltorb/issues",

scripts/build.js

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,5 @@ function build({target, runtime, abi}) {
4141
}
4242

4343

44-
const builds = [
45-
{ runtime: 'node', target: process.versions.node, abi: false }
46-
];
47-
48-
if (PUBLISH_BINARY) {
49-
builds.push(
50-
{ runtime: 'electron', target: '50', abi: true },
51-
{ runtime: 'electron', target: '53', abi: true },
52-
{ runtime: 'electron', target: process.versions.modules, abi: true }
53-
);
54-
}
55-
56-
builds
57-
.reduce((promise, item) => {
58-
return promise.then(() => build(item)).catch((code) => process.exit(code));
59-
}, Promise.resolve());
44+
build({ runtime: 'node', target: process.versions.node, abi: false })
45+
.catch(code => process.exit(code));

0 commit comments

Comments
 (0)