Skip to content

Commit

Permalink
minor internal improvements, making if-s more pythonic
Browse files Browse the repository at this point in the history
- see Issue #92
  • Loading branch information
8go committed Oct 10, 2022
1 parent 81f0c1d commit 6eb5f8e
Show file tree
Hide file tree
Showing 9 changed files with 121 additions and 172 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1628,7 +1628,7 @@ options:
information program will continue to run. This is
useful for having version number in the log files.
You are running version 3.5.10 2022-10-08. Enjoy, star on Github and
You are running version 3.5.11 2022-10-10. Enjoy, star on Github and
contribute by submitting a Pull Request.
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.10
3.5.11
Binary file removed dist/matrix-commander-3.5.10.tar.gz
Binary file not shown.
Binary file added dist/matrix-commander-3.5.11.tar.gz
Binary file not shown.
Binary file removed dist/matrix_commander-3.5.10-py3-none-any.whl
Binary file not shown.
Binary file added dist/matrix_commander-3.5.11-py3-none-any.whl
Binary file not shown.
285 changes: 117 additions & 168 deletions matrix_commander/matrix_commander.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ done
PS3='Please enter your choice: '
echo "Watch Actions workflows on Github, if any."
echo "Now double-check if everything is in order."
OPT1="git tag --list -n --sort=-refname # list tags"
OPT1="git tag --list -n --sort=-refname | head -n 15 # list tags"
OPT2="git log --pretty=oneline -n 7 # now it shows tag in commit hash"
OPT3="git log -1 --pretty=%B # details of last commit"
OPT4="git tag --list -n20 $(git describe) # details of last tag"
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 = 3.5.10
version = 3.5.11
author = 8go
description = A simple command-line Matrix client
long_description = file: PyPi-Instructions.md, README.md
Expand Down

0 comments on commit 6eb5f8e

Please sign in to comment.