Skip to content

Commit 088b46c

Browse files
authored
chore: release 1.12.1 CloudEvents v1 goes into maintenance mode (#271)
* chore: release 1.12.1 with CloudEvents v2 update and v1 support adjustment Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> * chore: update mypy config to use Python 3.9 Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> * chore: update pytest version range in test requirements Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> * chore: update pytest version range in sample requirements Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> --------- Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>
1 parent a38933d commit 088b46c

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.12.1]
10+
11+
### Changed
12+
13+
- CloudEvents v1 moved to security fixes support stage.
14+
CloudEvents v2 is a rewrite with ongoing development ([])
15+
916
## [1.12.0]
1017

1118
### Changed
1219

13-
- Dropped Python3.8 support while it has reached EOL. ([])
20+
- Dropped Python3.8 support while it has reached EOL. ([#249])
1421

1522
## [1.11.1]
1623

@@ -301,3 +308,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
301308
[#236]: https://github.com/cloudevents/sdk-python/pull/236
302309
[#240]: https://github.com/cloudevents/sdk-python/pull/240
303310
[#248]: https://github.com/cloudevents/sdk-python/pull/248
311+
[#249]: https://github.com/cloudevents/sdk-python/pull/249

cloudevents/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
1414

15-
__version__ = "1.12.0"
15+
__version__ = "1.12.1"

mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[mypy]
22
plugins = pydantic.mypy
3-
python_version = 3.8
3+
python_version = 3.9
44

55
pretty = True
66
show_error_context = True

requirements/test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
flake8
22
pep8-naming
33
flake8-print
4-
pytest
4+
pytest>=8.0.0,<9.0
55
pytest-cov
66
# web app tests
77
sanic
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
flask
22
requests
33
Pillow
4-
pytest
4+
pytest>=8.0.0,<9.0
55
cloudevents
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
flask
22
requests
3-
pytest
3+
pytest>=8.0.0,<9.0
44
cloudevents

0 commit comments

Comments
 (0)