Skip to content

Commit

Permalink
update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed Feb 14, 2021
1 parent 826d436 commit 2bf7b02
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions avendesora/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
from inform import is_collection, is_str

# Globals {{{1
__version__ = "0.4.1"
__released__ = "2020-07-12"
__version__ = "0.5.0"
__released__ = "2021-01-27"


# Utilities {{{1
Expand Down
2 changes: 1 addition & 1 deletion avendesora/extended_pathlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import six

# Globals {{{1
__version__ = "0.4.1"
__version__ = "0.5.0"


# is_readable {{{1
Expand Down
1 change: 1 addition & 0 deletions doc/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Releases
| Version: 1.19.1
| Released: 2021-01-05
**1.20 (2021-02-13)
- added *hidden_fields* setting.
**1.19 (2021-01-03)
Expand Down
9 changes: 6 additions & 3 deletions samples/api/bw-export
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,12 @@ try:
'field unknown by bitwarden.',
culprit=(account_name, k)
)
value = Script(dedent(v))
value.initialize(account)
fields[k] = str(value)
try:
value = Script(dedent(v))
value.initialize(account)
fields[k] = str(value)
except PasswordError as e:
e.reraise(culprit=(class_name, k, e.culprit))
writer.writerow(fields)
os.chmod(output_filename, 0o600)

Expand Down

0 comments on commit 2bf7b02

Please sign in to comment.