Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.12.1]

### Changed

- CloudEvents v1 moved to security fixes support stage.
CloudEvents v2 is a rewrite with ongoing development ([])

## [1.12.0]

### Changed

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

## [1.11.1]

Expand Down Expand Up @@ -301,3 +308,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#236]: https://github.com/cloudevents/sdk-python/pull/236
[#240]: https://github.com/cloudevents/sdk-python/pull/240
[#248]: https://github.com/cloudevents/sdk-python/pull/248
[#249]: https://github.com/cloudevents/sdk-python/pull/249
2 changes: 1 addition & 1 deletion cloudevents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# License for the specific language governing permissions and limitations
# under the License.

__version__ = "1.12.0"
__version__ = "1.12.1"
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[mypy]
plugins = pydantic.mypy
python_version = 3.8
python_version = 3.9

pretty = True
show_error_context = True
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
flake8
pep8-naming
flake8-print
pytest
pytest>=8.0.0,<9.0
pytest-cov
# web app tests
sanic
Expand Down
2 changes: 1 addition & 1 deletion samples/http-image-cloudevents/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
flask
requests
Pillow
pytest
pytest>=8.0.0,<9.0
cloudevents
2 changes: 1 addition & 1 deletion samples/http-json-cloudevents/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
flask
requests
pytest
pytest>=8.0.0,<9.0
cloudevents
Loading