Skip to content

Commit

Permalink
Merge pull request #7 from kwooshung/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
kwooshung authored Jan 13, 2024
2 parents 3131500 + 9cf798b commit 927a260
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 15 deletions.
1 change: 1 addition & 0 deletions changelogs/.history
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
1.0.6
1.0.5
1.0.4
1.0.3
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.en.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.6 `2024-01-13`
### 🐛 Fix
- Update the path, otherwise the index.d.ts generated ([#2ac4a40](https://github.com/kwooshung/algorithm-sorts/commit/2ac4a407fe24f728131539472abf39b9a18ac278))

## 🎉 1.0.5 `2024-01-13`
### 🐛 Fix
- Gitee address error ([#1691b6a](https://github.com/kwooshung/algorithm-sorts/commit/1691b6add64463040261f9d1a2d66d880bc48173))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.ja.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.6 `2024-01-13`
### 🐛 Fix
- パスを更新します。それ以外の場合は、index.d.ts生成されます ([#2ac4a40](https://github.com/kwooshung/algorithm-sorts/commit/2ac4a407fe24f728131539472abf39b9a18ac278))

## 🎉 1.0.5 `2024-01-13`
### 🐛 Fix
- Giteeアドレスエラー ([#1691b6a](https://github.com/kwooshung/algorithm-sorts/commit/1691b6add64463040261f9d1a2d66d880bc48173))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.ko.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.6 `2024-01-13`
### 🐛 Fix
- 경로를 업데이트, 그렇지 않으면 index.d.ts가 생성되었습니다 ([#2ac4a40](https://github.com/kwooshung/algorithm-sorts/commit/2ac4a407fe24f728131539472abf39b9a18ac278))

## 🎉 1.0.5 `2024-01-13`
### 🐛 Fix
- Gitee 주소 오류 ([#1691b6a](https://github.com/kwooshung/algorithm-sorts/commit/1691b6add64463040261f9d1a2d66d880bc48173))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.ru.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.6 `2024-01-13`
### 🐛 Fix
- Обновите путь, в противном случае сгенерированный index.d.ts ([#2ac4a40](https://github.com/kwooshung/algorithm-sorts/commit/2ac4a407fe24f728131539472abf39b9a18ac278))

## 🎉 1.0.5 `2024-01-13`
### 🐛 Fix
- Ошибка адреса Gitee ([#1691b6a](https://github.com/kwooshung/algorithm-sorts/commit/1691b6add64463040261f9d1a2d66d880bc48173))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.zh-cn.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.6 `2024-01-13`
### 🐛 Fix
- 更新路径,否则生成的索引 ([#2ac4a40](https://github.com/kwooshung/algorithm-sorts/commit/2ac4a407fe24f728131539472abf39b9a18ac278))

## 🎉 1.0.5 `2024-01-13`
### 🐛 Fix
- Gitee地址错误 ([#1691b6a](https://github.com/kwooshung/algorithm-sorts/commit/1691b6add64463040261f9d1a2d66d880bc48173))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.zh-tw.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.6 `2024-01-13`
### 🐛 Fix
- 更新路徑,否則生成的索引 ([#2ac4a40](https://github.com/kwooshung/algorithm-sorts/commit/2ac4a407fe24f728131539472abf39b9a18ac278))

## 🎉 1.0.5 `2024-01-13`
### 🐛 Fix
- Gitee地址錯誤 ([#1691b6a](https://github.com/kwooshung/algorithm-sorts/commit/1691b6add64463040261f9d1a2d66d880bc48173))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kwooshung/algorithm-sorts",
"version": "1.0.5",
"version": "1.0.6",
"title": "algorithm-sorts",
"description": "Better algorithm implementation library",
"private": false,
Expand Down
28 changes: 14 additions & 14 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
export { default as sortBubble } from '@/sorts/bubble';
export { default as sortShortBubble } from '@/sorts/bubble/short';
export { default as sortCocktail } from '@/sorts/cocktail';
export { default as sortCounting } from '@/sorts/counting';
export { default as sortOptimizedCounting } from '@/sorts/counting/optimized';
export { default as sortHeap } from '@/sorts/heap';
export { default as sortInsertion } from '@/sorts/insertion';
export { default as sortMerge } from '@/sorts/merge';
export { default as sortPancake } from '@/sorts/pancake';
export { default as sortQuick } from '@/sorts/quick';
export { default as sortRadix } from '@/sorts/radix';
export { default as sortSelection } from '@/sorts/selection';
export { default as sortShell } from '@/sorts/shell';
export { default as sortTim } from '@/sorts/tim';
export { default as sortBubble } from './sorts/bubble';
export { default as sortShortBubble } from './sorts/bubble/short';
export { default as sortCocktail } from './sorts/cocktail';
export { default as sortCounting } from './sorts/counting';
export { default as sortOptimizedCounting } from './sorts/counting/optimized';
export { default as sortHeap } from './sorts/heap';
export { default as sortInsertion } from './sorts/insertion';
export { default as sortMerge } from './sorts/merge';
export { default as sortPancake } from './sorts/pancake';
export { default as sortQuick } from './sorts/quick';
export { default as sortRadix } from './sorts/radix';
export { default as sortSelection } from './sorts/selection';
export { default as sortShell } from './sorts/shell';
export { default as sortTim } from './sorts/tim';

0 comments on commit 927a260

Please sign in to comment.