Skip to content

Commit fc565dd

Browse files
authored
Merge pull request #205 from dajiaji/bump-to-v1_5_3
Bump up version to v1.5.3.
2 parents fc44194 + 0b7ae73 commit fc565dd

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

CHANGES.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ Changes
44
Unreleased
55
----------
66

7+
Version 1.5.3
8+
-------------
9+
10+
Released 2022-01-01
11+
12+
- Add 2022 to copyright and license. `#205 <https://github.com/dajiaji/python-cwt/pull/205>`__
13+
- Fix link to homepage on PyPI. `#204 <https://github.com/dajiaji/python-cwt/pull/204>`__
14+
- Add license information to PyPI. `#204 <https://github.com/dajiaji/python-cwt/pull/204>`__
15+
716
Version 1.5.2
817
-------------
918

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Ajitomi, Daisuke
3+
Copyright (c) 2021-2022 Ajitomi Daisuke
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

cwt/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
from .recipient import Recipient
1717
from .signer import Signer
1818

19-
__version__ = "1.5.2"
19+
__version__ = "1.5.3"
2020
__title__ = "cwt"
2121
__description__ = "A Python implementation of CWT/COSE"
2222
__url__ = "https://python-cwt.readthedocs.io"
2323
__uri__ = __url__
2424
__doc__ = __description__ + " <" + __uri__ + ">"
25-
__author__ = "AJITOMI Daisuke"
25+
__author__ = "Ajitomi Daisuke"
2626
__email__ = "ajitomi@gmail.com"
2727
__license__ = "MIT"
28-
__copyright__ = "Copyright 2021 AJITOMI Daisuke"
28+
__copyright__ = "Copyright 2021-2022 Ajitomi Daisuke"
2929
__all__ = [
3030
"encode",
3131
"encode_and_mac",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "cwt"
7-
version = "1.5.2"
7+
version = "1.5.3"
88
description = "A Python implementation of CWT/COSE."
99
authors = ["Ajitomi Daisuke <dajiaji@gmail.com>"]
1010
license = "MIT"

0 commit comments

Comments
 (0)