Skip to content

Commit

Permalink
Merge branch 'master' into f/lexer_parser
Browse files Browse the repository at this point in the history
  • Loading branch information
ghantoos authored Dec 13, 2024
2 parents 1450194 + b41b00d commit cfa6591
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Contact: [[email protected]](mailto:[email protected])
[https://github.com/ghantoos/lshell](https://github.com/ghantoos/lshell)

### v0.10.10 25/11/2024
- Added path-only completion with completion from allowed paths.
- Added prompt color support using ANSI codes.

### v0.10.9 19/11/2024
- Fixed SFTP bug that caused connection failure.

Expand Down
2 changes: 1 addition & 1 deletion lshell/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
import os

__version__ = "0.10.9"
__version__ = "0.10.10"

# Required config variable list per user
required_config = ["allowed", "forbidden", "warning_counter"]
Expand Down
2 changes: 1 addition & 1 deletion man/lshell.1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.\"
.\" Man page for the Limited Shell (lshell) project.
.\"
.TH lshell 1 "October, 2024" "v0.10.9"
.TH lshell 1 "October, 2024" "v0.10.10"

.SH NAME
lshell \- Limited Shell
Expand Down
1 change: 1 addition & 0 deletions test/test_completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

from test.test_utils import is_alpine_linux


TOPDIR = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
CONFIG = f"{TOPDIR}/test/testfiles/test.conf"
LSHELL = f"{TOPDIR}/bin/lshell"
Expand Down

0 comments on commit cfa6591

Please sign in to comment.