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

Commit

Permalink
Bump to v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nstepien committed Jul 31, 2018
1 parent e0d20e3 commit adf946d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 21 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
branches:
only:
- master

language: node_js

os:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.4.0] - 2018-07-31
### Changed
- Updated brotli from [v1.0.4] to [v1.0.5]
- Replaced NAN with N-API

### Removed
- Dropped support for Node 9

## [2.3.2] - 2018-05-01
### Fixed
- Fixed pre-compiled binaries download script
Expand Down Expand Up @@ -270,6 +278,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [1.0.0] - 2015-10-18

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

[v1.0.5]: https://github.com/google/brotli/releases/tag/v1.0.5
[v1.0.4]: https://github.com/google/brotli/releases/tag/v1.0.4
[v1.0.3]: https://github.com/google/brotli/releases/tag/v1.0.3
[v1.0.2]: https://github.com/google/brotli/releases/tag/v1.0.2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iltorb",
"version": "2.3.2",
"version": "2.4.0",
"description": "Brotli compression/decompression with native bindings",
"homepage": "https://github.com/MayhemYDG/iltorb",
"bugs": "https://github.com/MayhemYDG/iltorb/issues",
Expand Down
18 changes: 2 additions & 16 deletions scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,5 @@ function build({target, runtime, abi}) {
}


const builds = [
{ runtime: 'node', target: process.versions.node, abi: false }
];

if (PUBLISH_BINARY) {
builds.push(
{ runtime: 'electron', target: '50', abi: true },
{ runtime: 'electron', target: '53', abi: true },
{ runtime: 'electron', target: process.versions.modules, abi: true }
);
}

builds
.reduce((promise, item) => {
return promise.then(() => build(item)).catch((code) => process.exit(code));
}, Promise.resolve());
build({ runtime: 'node', target: process.versions.node, abi: false })
.catch(code => process.exit(code));

0 comments on commit adf946d

Please sign in to comment.