Skip to content

Commit d67a49c

Browse files
committed
chore: Release rlt version 0.1.1-rc.1
Signed-off-by: Wenxuan Zhang <[email protected]>
1 parent 13d806c commit d67a49c

File tree

3 files changed

+147
-2
lines changed

3 files changed

+147
-2
lines changed

CHANGELOG.md

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [0.1.1-rc.1] - 2024-04-14
6+
7+
### 🚀 Features
8+
9+
- Add debug derive to BenchCli (#7)
10+
- Implement logical clock (#6)
11+
12+
### 🐛 Bug Fixes
13+
14+
- Fix panic when the receiver is dropped #2
15+
16+
### ⚙️ Miscellaneous Tasks
17+
18+
- Remove spaces in tui title
19+
- Use git-cliff to generate changlog (#8)
20+
- Release rlt version 0.1.1-rc.1
21+
22+
## [0.1.1-alpha.6] - 2024-04-12
23+
24+
### 🚀 Features
25+
26+
- Add log framework
27+
28+
### 🚜 Refactor
29+
30+
- Make log feature optional
31+
- Simplify key event handling for log win
32+
- Remove unnecessary log messages
33+
34+
### ⚙️ Miscellaneous Tasks
35+
36+
- Release rlt version 0.1.1-alpha.6
37+
38+
## [0.1.1-alpha.5] - 2024-04-06
39+
40+
### 📚 Documentation
41+
42+
- Update description
43+
44+
### ⚙️ Miscellaneous Tasks
45+
46+
- Release rlt version 0.1.1-alpha.5
47+
48+
## [0.1.1-alpha.4] - 2024-04-06
49+
50+
### 📚 Documentation
51+
52+
- Update description
53+
54+
### ⚙️ Miscellaneous Tasks
55+
56+
- Release rlt version 0.1.1-alpha.4
57+
58+
## [0.1.1-alpha.3] - 2024-04-05
59+
60+
### 🚀 Features
61+
62+
- Add postgres example
63+
64+
### 🚜 Refactor
65+
66+
- Simplify the cli interface
67+
68+
### ⚙️ Miscellaneous Tasks
69+
70+
- Release rlt version 0.1.1-alpha.3
71+
72+
## [0.1.1-alpha.2] - 2024-04-05
73+
74+
### 🚀 Features
75+
76+
- Add simple example
77+
- Add StatelessBenchSuite trait
78+
- Make runner state mutable
79+
- Improve time unit display in tui
80+
- Improve the tui and text reporter output
81+
- Change the separator of the histogram
82+
- Add worker_id to BenchSuite::state()
83+
- Add setup and teardown hooks to BenchSuite
84+
- Remove rand dependency
85+
- Change the signature of `teardown` method
86+
- Add http_reqwest example
87+
- Add http feature
88+
89+
### 🐛 Bug Fixes
90+
91+
- Fix auto time window selection
92+
- Fix indent for text reporter
93+
- Fix hang in case iterations reached first
94+
- Make sure all tasks are joined
95+
96+
### 🚜 Refactor
97+
98+
- Rename UnknownError status
99+
- Remove unnecessary init function
100+
- Rename example
101+
- Update summary format for text reporter
102+
- Use JoinSet instead of Vec<JoinHandle>
103+
- Rename RunnerState to WorkerInfo
104+
- Remove init method from BenchSuite
105+
- Avoid extra newline in text reporter
106+
- Rename
107+
108+
### 📚 Documentation
109+
110+
- Update README.md
111+
- Add docs for the CLI module
112+
- Add more docs
113+
- Add `no_run` mark
114+
- Update README.md
115+
- Improve README.md
116+
117+
### ⚙️ Miscellaneous Tasks
118+
119+
- Release rlt version 0.1.1-alpha.2
120+
121+
## [0.1.1-alpha.1] - 2024-03-26
122+
123+
### 🐛 Bug Fixes
124+
125+
- Fix hang when canceling a paused bench
126+
127+
### 🚜 Refactor
128+
129+
- Update module visibility
130+
131+
### 📚 Documentation
132+
133+
- Update readme
134+
135+
### ⚙️ Miscellaneous Tasks
136+
137+
- Add rustfmt config file
138+
- Setup
139+
- Update rustfmt & rust-toolchain
140+
- Simplify workflows
141+
- Remove unused dependency
142+
- Disable minimal version check
143+
- Release rlt version 0.1.1-alpha.1
144+
145+
<!-- generated by git-cliff -->

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rlt"
3-
version = "0.1.1-alpha.6"
3+
version = "0.1.1-rc.1"
44
authors = ["Wenxuan Zhang <[email protected]>"]
55
description = "A universal load testing library for Rust, with real-time TUI support"
66
categories = [

0 commit comments

Comments
 (0)