diff --git a/.circleci/config.yml b/.circleci/config.yml index 44d5b09..d0d8117 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: @@ -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: @@ -141,3 +157,7 @@ workflows: <<: *build_releases - "node-11 musl": <<: *build_releases + - "node-12": + <<: *build_releases + - "node-12 musl": + <<: *build_releases diff --git a/.travis.yml b/.travis.yml index f838305..0f412d3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ node_js: - "8" - "10" - "11" + - "12" env: global: diff --git a/CHANGELOG.md b/CHANGELOG.md index 03e5090..8abc530 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/appveyor.yml b/appveyor.yml index 072eb93..8838308 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,6 +13,7 @@ environment: - nodejs_version: "8" - nodejs_version: "10" - nodejs_version: "11" + - nodejs_version: "12" platform: - x86