Skip to content

Commit

Permalink
Bump version to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lqmanh committed Apr 21, 2020
1 parent 255d321 commit 09b848a
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"node": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended",
"eslint:recommended",
"plugin:jest/recommended",
"eslint:recommended"
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ node_js:
- '8'
- '10'
- '12'
- '14'
cache: yarn
after_success:
- yarn run build:docs
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## v2.3.0

### FEATURES

- Add `BloomFilter.madd()`
- Add `BloomFilter.mexists()`
- Add `TopKFilter.list()`

## v2.2.0, v2.2.1

### FEATURES
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Albert Team
Copyright (c) 2019-2020 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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"engines": {
"node": ">=8"
},
"version": "2.2.1",
"version": "2.3.0",
"files": [
"dist"
],
Expand Down
5 changes: 2 additions & 3 deletions src/top-k-filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@ export default class TopKFilter extends BaseFilter {
}

/**
* get full list of items in Top K list.
*
* @return full list of items in Top K list
* Get full list of items in the filter
* @return Full list of items in the filter
*/
public list(): Promise<string[]> {
return this.client.call('TOPK.LIST', this.name)
Expand Down

0 comments on commit 09b848a

Please sign in to comment.