Skip to content

Commit

Permalink
Bump version to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sysid committed Jun 15, 2024
1 parent 15e55d5 commit 4b741c9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ all: clean build upload ## Build and upload
# Building, Deploying \
BUILDING: ## ############################################################
.PHONY: build
build: clean format isort ## format and build
build: clean format sort-imports ## format and build
@echo "building"
#python -m build
pdm build

.PHONY: upload
upload: ## upload to PyPi
@echo "upload"
.PHONY: publish
publish: ## publish
@echo "upload to Pypi"
pdm publish
#twine upload --verbose dist/*
#@git log -10 --pretty=format:"%h %aN %ar %d %s" | grep main | grep Bump && \
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.1.1
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "pdm.backend"

[project]
name = "sse-starlette"
version = "2.1.0"
version = "2.1.1"
description = "SSE plugin for Starlette"
readme = "README.md"
license = {text = "BSD-3-Clause"}
Expand Down Expand Up @@ -46,7 +46,7 @@ asyncio_mode = "auto"
#addopts = "--cov=my_package --cov-report=term-missing"

[tool.bumpversion]
current_version = "2.1.0"
current_version = "2.1.1"
commit = true
tag = false
message = "Bump version to {new_version}"
Expand Down
2 changes: 1 addition & 1 deletion sse_starlette/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from sse_starlette.sse import EventSourceResponse, ServerSentEvent

__all__ = ["ServerSentEvent", "EventSourceResponse"]
__version__ = "2.1.0"
__version__ = "2.1.1"
1 change: 0 additions & 1 deletion tests/integration/test_conditional_yielding_endpoint.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import logging



_log = logging.getLogger(__name__)

0 comments on commit 4b741c9

Please sign in to comment.