Skip to content

Commit feb84c7

Browse files
authored
chore(version): bump version to v0.4.1 (#126)
* chore(version): bump version to v0.4.1 * docs(CHANGELOG): v0.4.1 * chore(lock): update Cargo.lock * docs(Cargo.toml): update desc
1 parent 4acc617 commit feb84c7

File tree

3 files changed

+76
-41
lines changed

3 files changed

+76
-41
lines changed

CHANGELOG.md

+55-20
Original file line numberDiff line numberDiff line change
@@ -1,136 +1,171 @@
1+
## v0.4.1
2+
3+
- Search problems by name
4+
- Re-enable chrome plugin
5+
16
## v0.3.3
27

3-
* allow more flexible categories by @frrad
4-
* change params type to `Option<Param>` @frrad
8+
- allow more flexible categories by @frrad
9+
- change params type to `Option<Param>` @frrad
510

611
## v0.3.2
712

8-
* adds additional tracing by @shmuga
9-
* removes test_mode parameter by @shmuga
13+
- adds additional tracing by @shmuga
14+
- removes test_mode parameter by @shmuga
1015

1116
## v0.3.1
1217

13-
* pipe handling by @aymanbagabas
14-
* Improve README by @xiaoxiae
18+
- pipe handling by @aymanbagabas
19+
- Improve README by @xiaoxiae
1520

1621
## v0.3.0
1722

18-
* Upgrade reqwest to async mode
19-
* Format code using clippy
23+
- Upgrade reqwest to async mode
24+
- Format code using clippy
2025

2126
## v0.2.23
2227

23-
* support color display
28+
- support color display
2429

2530
## v0.2.22
26-
* Fixed the cache can't update with new added problems
2731

28-
* Display user friendly errors when pick/edit new added problem.
32+
- Fixed the cache can't update with new added problems
2933

30-
* upgrade pyo3
34+
- Display user friendly errors when pick/edit new added problem.
3135

32-
* fix leetcode list with empty cache
36+
- upgrade pyo3
37+
38+
- fix leetcode list with empty cache
3339

3440
## v0.2.21
3541

36-
* Make programmable support to be an advanced feature
42+
- Make programmable support to be an advanced feature
3743

3844
## v0.2.20
3945

40-
* Support sup/sub style for numbers
46+
- Support sup/sub style for numbers
4147

4248
## v0.2.19
43-
* Better HTML!
49+
50+
- Better HTML!
4451

4552
## v0.2.18
46-
* Display stdout for test and execute commands, fix minor spacing in results displayed
4753

48-
* Fix panic on `pick` command without cache
54+
- Display stdout for test and execute commands, fix minor spacing in results displayed
55+
56+
- Fix panic on `pick` command without cache
4957

5058
## v0.2.17
51-
Fix panic on stat command with zero numbers
59+
60+
Fix panic on stat command with zero numbers
5261

5362
## v0.2.16
63+
5464
Update versions of diesel and reqwest
5565

5666
## v0.2.15
67+
5768
Allow for custom testcases with the `leetcode test` command, and some minor edits
5869

5970
## v0.2.14
60-
Corrects file suffixes for c** and c# files
71+
72+
Corrects file suffixes for c\*\* and c# files
6173

6274
## v0.2.13
75+
6376
fix percent length panic
6477

6578
## v0.2.12
79+
6680
fix gt || ge || lt || le
6781

6882
## v0.2.11
83+
6984
added code 14 and transfered `&#ge;``&#le` and `&#39;`.
7085

7186
## v0.2.10
87+
7288
add code 15
7389

7490
## v0.2.9
91+
7592
update ac status after submit successfully
7693

7794
## v0.2.8
95+
7896
show last testcases
7997

8098
## v0.2.7
99+
81100
fixed float bug in result
82101

83102
## v0.2.6
103+
84104
sync config while change current lang
85105

86106
## v0.2.5
107+
87108
update local cache when submission status changes
88109

89110
## v0.2.4
111+
90112
auto fetch question while exec `edit` directly.
91113

92114
## v0.2.3
115+
93116
Programmable leetcode-cli
94117

95118
## v0.2.2
119+
96120
1. optimize logs
97121
2. add tag filter
98122
3. sync configs
99123

100124
## v0.2.1
125+
101126
1. fix cookies error handling
102127
2. dismiss all `unwrap`, `expect` and `panic`
103128
3. add cookie configs
104129

105130
## v0.2.0
131+
106132
1. Add Linux Support
107133

108134
## v0.1.9
135+
109136
1. release submit command
110137
2. deserialize json using outter funcs
111138

112139
## v0.1.8
140+
113141
1. pack mod exports
114142
2. add edit command
115143
3. add test command
116144

117145
## v0.1.7
146+
118147
render html in command-line, and `pick` command
119148

120149
## v0.1.6
150+
121151
complete `stat` command
122152

123153
## v0.1.5
154+
124155
complete `cache` command
125156

126157
## v0.1.3
158+
127159
complete `list` command
128160

129161
## v0.1.2
162+
130163
abstract data cache
131164

132165
## v0.1.1
166+
133167
add list command
134168

135169
## v0.1.0
170+
136171
chrome cookie

Cargo.lock

+19-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ path = "src/bin/lc.rs"
44

55
[package]
66
name = "leetcode-cli"
7-
version = "0.4.0"
7+
version = "0.4.1"
88
authors = ["clearloop <[email protected]>"]
99
edition = "2021"
10-
description = "Leet your code in command-line."
10+
description = "Leetcode command-line interface in rust."
1111
repository = "https://github.com/clearloop/leetcode-cli"
1212
license = "MIT"
1313
documentation = "https://docs.rs/leetcode_cli"

0 commit comments

Comments
 (0)