Skip to content

Commit 9d4ec00

Browse files
author
qpzmV
committed
update doc and version to #v1.4.8
1 parent 6dc8a66 commit 9d4ec00

5 files changed

Lines changed: 13 additions & 3 deletions

File tree

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 = "movefmt"
3-
version = "1.4.7"
3+
version = "1.4.8"
44
repository = "https://github.com/movebit/movefmt"
55
license = "Apache-2.0"
66
publish = false

doc/ChangeLog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</tr>
99
<tr>
1010
<td>
11+
<a href="#v1.4.8">v1.4.8</a><br/>
1112
<a href="#v1.4.7">v1.4.7</a><br/>
1213
<a href="#v1.4.6">v1.4.6</a><br/>
1314
<a href="#v1.4.5">v1.4.5</a><br/>
@@ -52,6 +53,14 @@
5253
</table>
5354

5455

56+
<a id="v1.4.8"></a>
57+
## 2026-01-27, Version v1.4.8
58+
* [[`1dd87d4`](https://github.com/movebit/movefmt/commit/1dd87d4f478f31c452710cad4195e0df20cd5bd8)] - optimize specifier formatting, add SpecTok
59+
* [[`624740c`](https://github.com/movebit/movefmt/commit/624740c586c787f6ce97faa8be0b7b83e75f6ba3)] - optimize expr_fmt by BTreeSet and HashSet, make DotChainParser zero-copy
60+
* [[`dc5253d`](https://github.com/movebit/movefmt/commit/dc5253dd9dd79a17f4356ad46199e558a3ad85dc)] - optimize fmt_state
61+
* [[`f980b53`](https://github.com/movebit/movefmt/commit/f980b534b860726b52b58c2f8448cc31973d5348)] - update aptos-core dependence
62+
63+
5564
<a id="v1.4.7"></a>
5665
## 2026-01-15, Version v1.4.7
5766
* [[`984f813`](https://github.com/movebit/movefmt/commit/984f813fcfc792157bd1537f701e08eca4dce749)] - add github release CI

src/bin/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ fn print_usage_to_stdout(opts: &Options, reason: &str) {
500500
}
501501

502502
fn print_version() {
503-
println!("movefmt v1.4.7");
503+
println!("movefmt v1.4.8");
504504
}
505505

506506
fn determine_operation(matches: &Matches) -> Result<Operation, OperationError> {

src/syntax_fmt/fun_fmt.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ pub(crate) fn fun_header_specifier_fmt(specifier: &str, indent_str: &str) -> Str
237237
format_specifiers_optimized(specifier, &token_positions, indent_str, &arg_indent)
238238
}
239239

240+
#[allow(dead_code)]
240241
#[derive(Debug, Clone, Copy)]
241242
struct SpecTok<'a> {
242243
start: u32,

0 commit comments

Comments
 (0)