Skip to content

Commit

Permalink
Prepare for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
fdw committed Apr 8, 2021
1 parent 2e55b7e commit 255f977
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# [0.3.0]
## Changed
- The search is now case insensitive. (#8)
- Entries are sorted by relevancy.

# [0.2.0]
## Added
- `rofi-rbw` now supports Wayland with `wofi`, `wl-copy` and `wtyper`.
Expand Down
4 changes: 2 additions & 2 deletions rofi_rbw/rofi_rbw.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ def __init__(self) -> None:

def parse_arguments(self) -> argparse.Namespace:
parser = configargparse.ArgumentParser(
description='Select, insert or copy Unicode characters using rofi.',
description='Insert or copy passwords and usernames from Bitwarden using rofi.',
default_config_files=config_file_locations
)
parser.add_argument('--version', action='version', version='rofi-rbw 2.0.0')
parser.add_argument('--version', action='version', version='rofi-rbw 0.3.0')
parser.add_argument(
'--action',
'-a',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='rofi-rbw',
version='0.2.0',
version='0.3.0',
description='Rofi frontend for Bitwarden',
author='fdw',
author_email='[email protected]',
Expand Down

0 comments on commit 255f977

Please sign in to comment.