Skip to content

Commit

Permalink
version bump for minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
8go committed Aug 23, 2024
1 parent 16675d1 commit b6ccff2
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1934,7 +1934,7 @@ options:
the program will continue to run. This is useful for
having version number in the log files.
You are running version 7.6.0 2023-10-16. Enjoy, star on Github and contribute
You are running version 7.6.3 2024-08-23. Enjoy, star on Github and contribute
by submitting a Pull Request. Also have a look at matrix-commander-tui.
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.6.2
7.6.3
Binary file removed dist/matrix_commander-7.6.2-py3-none-any.whl
Binary file not shown.
Binary file removed dist/matrix_commander-7.6.2.tar.gz
Binary file not shown.
Binary file added dist/matrix_commander-7.6.3-py3-none-any.whl
Binary file not shown.
Binary file added dist/matrix_commander-7.6.3.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion help.help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -206,5 +206,5 @@ delete-content ROOM_ID EVENT_ID REASON [ROOM_ID EVENT_ID REASON ...]
-v [PRINT|CHECK], -V [PRINT|CHECK], --version [PRINT|CHECK]
Print version information or check for updates.

You are running version 7.6.0 2023-10-16. Enjoy, star on Github and contribute
You are running version 7.6.3 2024-08-23. Enjoy, star on Github and contribute
by submitting a Pull Request. Also have a look at matrix-commander-tui.
2 changes: 1 addition & 1 deletion help.manual.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1174,5 +1174,5 @@ options:
the program will continue to run. This is useful for
having version number in the log files.

You are running version 7.6.0 2023-10-16. Enjoy, star on Github and contribute
You are running version 7.6.3 2024-08-23. Enjoy, star on Github and contribute
by submitting a Pull Request. Also have a look at matrix-commander-tui.
2 changes: 1 addition & 1 deletion help.usage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ usage: matrix-commander [--usage] [-h] [--manual] [--readme] [-d]
[--room-invites [LIST|JOIN|LIST+JOIN]]
[-v [PRINT|CHECK]]

You are running version 7.6.0 2023-10-16. Enjoy, star on Github and contribute
You are running version 7.6.3 2024-08-23. Enjoy, star on Github and contribute
by submitting a Pull Request. Also have a look at matrix-commander-tui.
4 changes: 2 additions & 2 deletions matrix_commander/matrix_commander.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@
HAVE_OPENID = False

# version number
VERSION = "2024-05-02"
VERSIONNR = "7.6.2"
VERSION = "2024-08-23"
VERSIONNR = "7.6.3"
# matrix-commander; for backwards compitability replace _ with -
PROG_WITHOUT_EXT = os.path.splitext(os.path.basename(__file__))[0].replace(
"_", "-"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
# https://setuptools.pypa.io/en/latest/userguide/
name = matrix-commander
version = 7.6.2
version = 7.6.3
author = 8go
description = A simple command-line Matrix client
long_description = file: PyPi-Instructions.md, README.md
Expand Down
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env python

from setuptools import setup

if __name__ == "__main__":
setup()

0 comments on commit b6ccff2

Please sign in to comment.