Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrvadala committed Jun 1, 2020
1 parent 67c9482 commit c1ee716
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.md
@@ -1,7 +1,7 @@
# sliding-window-max

[![chrvadala](https://img.shields.io/badge/website-chrvadala-orange.svg)](https://chrvadala.github.io)
[![Build Status](https://travis-ci.org/chrvadala/sliding-window-max.svg?branch=master)](https://travis-ci.org/chrvadala/sliding-window-max)
[![Test](https://github.com/chrvadala/sliding-window-max/workflows/Test/badge.svg)](https://github.com/chrvadala/sliding-window-max/actions)
[![Coverage Status](https://coveralls.io/repos/github/chrvadala/sliding-window-max/badge.svg?branch=master)](https://coveralls.io/github/chrvadala/sliding-window-max?branch=master)
[![npm](https://img.shields.io/npm/v/sliding-window-max.svg?maxAge=2592000?style=plastic)](https://www.npmjs.com/package/sliding-window-max)
[![Downloads](https://img.shields.io/npm/dm/sliding-window-max.svg)](https://www.npmjs.com/package/sliding-window-max)
Expand All @@ -11,7 +11,7 @@ Given a stream of data, this algorithm returns (for every added value) the curre

It uses a strategy that:
- Stores at most a number of values defined by the window size
- Avoids to scan all the values to calculate the max value
- Performs a rolling max calculation

## Example

Expand Down Expand Up @@ -63,5 +63,10 @@ With **sliding-window-max** you can:
- evaluate the data as soon as they are produced
- evaluate big array using less memory

## Changelog
- **0.x** - Beta version
- **1.0** - First official version
- **1.1** - Migrates to gh-workflows; Upgrades deps

## Contributors
- [chrvadala](https://github.com/chrvadala) (author)
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "sliding-window-max",
"version": "1.0.0",
"version": "1.1.0",
"main": "src/SlidingWindowMax.js",
"repository": "https://github.com/chrvadala/sliding-window-max.git",
"author": "chrvadala",
Expand Down

0 comments on commit c1ee716

Please sign in to comment.