Skip to content

Commit 7e10152

Browse files
committed
small update for util scripts
1 parent 3f710e0 commit 7e10152

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
commit 3f710e02f6bc2fd28d65b73e38dc8061b36d3d2c
2+
Author: Alexeev Bronislav <[email protected]>
3+
Date: Sun Aug 31 22:32:14 2025 +0700
4+
5+
add fuzzy search algorithm to stdlib, improve docstrings
6+
17
commit a894b8a86cfa6d45f0543898f8aaf514107e77b4
28
Author: Alexeev Bronislav <[email protected]>
39
Date: Sun Aug 31 17:40:31 2025 +0700

format-code.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def find_source_files(root_dir, ignore_dirs):
1919

2020
def format_files(files, clang_format, style):
2121
global count
22+
2223
for file in files:
2324
try:
2425
cmd = [clang_format, "-i", "--style", style, file]

getversion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class GitVersion:
77
def __init__(self):
8-
self._default_version = "0.1.0"
8+
self._default_version = "0.1.0a"
99
os.chdir(os.path.dirname(os.path.realpath(__file__)))
1010

1111
@property
@@ -15,7 +15,7 @@ def tag(self):
1515

1616
@property
1717
def version(self):
18-
version = f"{self.tag[1:]}.{self.build}"
18+
version = f"{self.tag[1:]}-{self.build}"
1919

2020
if version == ".":
2121
return self._default_version

0 commit comments

Comments
 (0)