From d7e5a1fb64824f48da2c2cc8a3a5e2ab01756cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C6=B0=C6=A1ng=20Quang=20M=E1=BA=A1nh?= Date: Mon, 8 Feb 2021 02:56:56 +0700 Subject: [PATCH] Drop Node.js 8 support. Bump version to 2.5.0 --- .travis.yml | 1 - CHANGELOG.md | 13 +++++++++++++ LICENSE | 2 +- README.md | 2 +- package.json | 4 ++-- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index b17b9d1..64a7af8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: node_js node_js: - - '8' - '10' - '12' - '14' diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e6ccb8..d9568f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG +## v2.5.0 + +### FEATURES + +- Drop Node.js 8 support + +## v2.4.0 + +### FEATURES + +- Make `BaseFilter.name` non-final & public +- Add `BloomFilter.info()` + ## v2.3.0 ### FEATURES diff --git a/LICENSE b/LICENSE index 94e6d23..47841b6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2019-2020 Albert Team +Copyright (c) 2019-2021 Albert Team Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index aecce12..6e89d1b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ ### Requirements -- Node.js >= 8 +- Node.js >= 10 - Redis >= 4 - [RedisBloom][0] >= 2.2.0 diff --git a/package.json b/package.json index cc8e1ba..84939dc 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,9 @@ "author": "Albert Team", "repository": "github:albert-team/rebloom", "engines": { - "node": ">=8" + "node": ">=10" }, - "version": "2.4.0", + "version": "2.5.0", "files": ["dist"], "types": "dist/index.d.ts", "main": "dist/index.js",