Skip to content

Commit c337baf

Browse files
authored
Merge pull request #40 from datastructures-js/development
v4.2.1
2 parents 99dd77e + 172e994 commit c337baf

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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.2.1] - 2021-06-20
9+
10+
### Fixed
11+
- export.
812

913
## [4.2.0] - 2021-06-19
1014

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const { BinarySearchTreeNode } = require('./src/binarySearchTreeNode');
22
const { AvlTreeNode } = require('./src/avlTreeNode');
3-
const BinarySearchTree = require('./src/binarySearchTree');
4-
const AvlTree = require('./src/avlTree');
3+
const { BinarySearchTree } = require('./src/binarySearchTree');
4+
const { AvlTree } = require('./src/avlTree');
55

66
module.exports = {
77
BinarySearchTreeNode,

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/binary-search-tree",
3-
"version": "4.2.0",
3+
"version": "4.2.1",
44
"description": "binary search tree & avl tree (self balancing tree) implementation in javascript",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)