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
1 change: 0 additions & 1 deletion .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches:
- main
- v2
- 'tag/v**'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
hooks:
- id: mypy
files: ^(src/cloudevents/|tests/)
exclude: ^(src/cloudevents/v1/)
exclude: ^(src/cloudevents/v1/|tests/test_v1_compat/)
types: [python]
args: ["--config-file=pyproject.toml"]
additional_dependencies:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.0]

### Changed

- Released stable v2.0.0. See [migration](./MIGRATION.md) for details and migration
guidelines. ([#279])

## [2.0.0.alpha6]

### Changed
Expand Down Expand Up @@ -336,3 +343,4 @@ CloudEvents v2 is a rewrite with ongoing development ([#271])
[#275]: https://github.com/cloudevents/sdk-python/pull/275
[#276]: https://github.com/cloudevents/sdk-python/pull/276
[#278]: https://github.com/cloudevents/sdk-python/pull/278
[#279]: https://github.com/cloudevents/sdk-python/pull/279
2 changes: 1 addition & 1 deletion samples/http-image-cloudevents/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ flask
requests
Pillow
pytest
cloudevents==2.0.0a6
cloudevents==2.0.0
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
cloudevents==2.0.0a6
cloudevents==2.0.0
2 changes: 1 addition & 1 deletion src/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__ = "2.0.0-alpha6"
__version__ = "2.0.0"
Loading