diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d67efd..c3ed95b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file. - [Semantic Versioning](https://semver.org/spec/v2.0.0.html) - [`auto-changelog`](https://github.com/CookPete/auto-changelog) -## [v1.47.1](https://github.com/zrwusa/data-structure-typed/compare/v1.35.0...main) (upcoming) +## [v1.47.3](https://github.com/zrwusa/data-structure-typed/compare/v1.35.0...main) (upcoming) ### Changes diff --git a/package.json b/package.json index cc5b5c6..2ad1e91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "data-structure-typed", - "version": "1.47.2", + "version": "1.47.4", "description": "Data Structures of Javascript & TypeScript. Heap, Binary Tree, RedBlack Tree, Linked List, Deque, Trie, HashMap, Directed Graph, Undirected Graph, Binary Search Tree(BST), AVL Tree, Priority Queue, Graph, Queue, Tree Multiset, Singly Linked List, Doubly Linked List, Max Heap, Max Priority Queue, Min Heap, Min Priority Queue, Stack.", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/scripts/copy_to_all_subs.sh b/scripts/copy_to_all_subs.sh index de46d3c..943214c 100644 --- a/scripts/copy_to_all_subs.sh +++ b/scripts/copy_to_all_subs.sh @@ -27,6 +27,7 @@ directories=( "priority-queue-typed" "singly-linked-list-typed" "queue-typed" + "red-black-tree-typed" "stack-typed" "tree-multimap-typed" "trie-typed" diff --git a/scripts/publish_all_subs.sh b/scripts/publish_all_subs.sh index df40d67..49dd0df 100755 --- a/scripts/publish_all_subs.sh +++ b/scripts/publish_all_subs.sh @@ -45,6 +45,7 @@ directories=( "priority-queue-typed" "singly-linked-list-typed" "queue-typed" + "red-black-tree-typed" "stack-typed" "tree-multimap-typed" "trie-typed" diff --git a/scripts/run_command_all_subs.sh b/scripts/run_command_all_subs.sh index 3e3b075..ab604fe 100755 --- a/scripts/run_command_all_subs.sh +++ b/scripts/run_command_all_subs.sh @@ -41,6 +41,7 @@ directories=( "priority-queue-typed" "singly-linked-list-typed" "queue-typed" + "red-black-tree-typed" "stack-typed" "tree-multimap-typed" "trie-typed"