Skip to content

Commit 1560996

Browse files
committed
chore(release): v2.0.6
1 parent 84376cd commit 1560996

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
url = os.environ["TARBALL_URL"]
6969
sha = os.environ["SHA256"]
7070
71-
text = re.sub(r'^(\s*url\s+\").*(\")', r'\1%s\2' % url, text, flags=re.M)
72-
text = re.sub(r'^(\s*sha256\s+\").*(\")', r'\1%s\2' % sha, text, flags=re.M)
71+
text = re.sub(r'^(\s*url\s+\").*(\")', r'\g<1>%s\g<2>' % url, text, flags=re.M)
72+
text = re.sub(r'^(\s*sha256\s+\").*(\")', r'\g<1>%s\g<2>' % sha, text, flags=re.M)
7373
path.write_text(text)
7474
PY
7575
- name: Commit and push

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kfastov/tgcli",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"type": "module",
55
"description": "Telegram CLI + MCP server powered by MTProto and the official MCP SDK",
66
"main": "mcp-server.js",

0 commit comments

Comments
 (0)