Skip to content

Commit 378d7a1

Browse files
authored
Merge pull request #20 from datastructures-js/development
v4.1.2
2 parents f93d4d2 + e5f0580 commit 378d7a1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [4.1.2] - 2021-06-20
9+
### Fixed
10+
- export.
811

912
## [4.1.1] - 2021-06-14
1013
### Fixed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const Queue = require('./src/queue');
1+
const { Queue } = require('./src/queue');
22

33
exports.Queue = Queue;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datastructures-js/queue",
3-
"version": "4.1.1",
3+
"version": "4.1.2",
44
"description": "a performant queue implementation in javascript",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)