Skip to content

Commit 051e157

Browse files
authored
bug: stand-alone still used old encoding format (#109)
* bug: stand-alone still used old encoding format
1 parent a8e4440 commit 051e157

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pywebpush/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def get_config():
1414
parser.add_argument("--key", help="Vapid private key file path")
1515
parser.add_argument("--curl", help="Don't send, display as curl command",
1616
default=False, action="store_true")
17-
parser.add_argument("--encoding", default="aesgcm")
17+
parser.add_argument("--encoding", default="aes128gcm")
1818

1919
args = parser.parse_args()
2020

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import find_packages, setup
55

66

7-
__version__ = "1.9.1"
7+
__version__ = "1.9.2"
88

99

1010
def read_from(file):

0 commit comments

Comments
 (0)