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

Commit

Permalink
Node 12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
nstepien committed Apr 24, 2019
1 parent f96e804 commit a02cd10
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Expand Up @@ -84,6 +84,14 @@ jobs:
DISTRO: CENTOS
NODEJS: 11

"node-12":
<<: *config_steps
docker:
- image: centos:7
environment:
DISTRO: CENTOS
NODEJS: 12

"node-6 musl":
<<: *config_steps
docker:
Expand Down Expand Up @@ -116,6 +124,14 @@ jobs:
DISTRO: ALPINE
NODEJS: 11

"node-12 musl":
<<: *config_steps
docker:
- image: mhart/alpine-node:12
environment:
DISTRO: ALPINE
NODEJS: 12

build_releases: &build_releases
filters:
tags:
Expand All @@ -141,3 +157,7 @@ workflows:
<<: *build_releases
- "node-11 musl":
<<: *build_releases
- "node-12":
<<: *build_releases
- "node-12 musl":
<<: *build_releases
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -8,6 +8,7 @@ node_js:
- "8"
- "10"
- "11"
- "12"

env:
global:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,9 @@
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/).

### Added
- Support for Node 12

### Changed
- Updated npm dependencies.

Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -13,6 +13,7 @@ environment:
- nodejs_version: "8"
- nodejs_version: "10"
- nodejs_version: "11"
- nodejs_version: "12"

platform:
- x86
Expand Down

0 comments on commit a02cd10

Please sign in to comment.