From b3aea435474f9abd1b69fec0c04ae4e9a7d4b5dc Mon Sep 17 00:00:00 2001 From: Ron Klein Date: Wed, 27 Apr 2022 14:34:39 +0300 Subject: [PATCH] readme with link to npm + version bump --- README.md | 5 ++++- package.json | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 268ab2c..0ca2121 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ -[![CI](https://github.com/kleinron/lite-fifo/actions/workflows/main.yaml/badge.svg)](https://github.com/kleinron/lite-fifo/actions/workflows/main.yaml) [![GitHub license](https://img.shields.io/github/license/kleinron/lite-fifo)](https://github.com/kleinron/lite-fifo/blob/main/LICENSE) +[![NPM version](https://img.shields.io/npm/v/lite-fifo.svg?style=flat)](https://npmjs.org/package/lite-fifo) +[![CI](https://github.com/kleinron/lite-fifo/actions/workflows/main.yaml/badge.svg)](https://github.com/kleinron/lite-fifo/actions/workflows/main.yaml) +[![GitHub license](https://img.shields.io/github/license/kleinron/lite-fifo)](https://github.com/kleinron/lite-fifo/blob/main/LICENSE) + # lite-fifo ## Lightweight and efficient Queue implementations diff --git a/package.json b/package.json index f0e5e30..820d18a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "lite-fifo", - "version": "0.2.0", + "version": "0.2.1", + "license": "MIT", "main": "src/index.js", "homepage": "https://github.com/kleinron/lite-fifo.git#readme", "description": "Lightweight, optimized, and efficient implementations for FIFO (queue) data structure",