Skip to content

Commit

Permalink
Bump version: 1.2.0 → 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sysid committed Nov 15, 2022
1 parent 6a318b6 commit 534ea90
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.0
current_version = 1.2.1
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

<a id='changelog-1.2.1'></a>
# 1.2.1 — 2022-11-15

add support for custom async iterable objects
https://github.com/sysid/sse-starlette/pull/43

<a id='changelog-1.1.6'></a>
# 1.1.6 — 2022-07-31

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pkg_src = $(app_root)/sse_starlette
tests_src = $(app_root)/tests

.PHONY: all
all: clean build upload tag ## Build and upload
all: clean build upload ## Build and upload
@echo "--------------------------------------------------------------------------------"
@echo "-M- building and distributing"
@echo "--------------------------------------------------------------------------------"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0
1.2.1
2 changes: 1 addition & 1 deletion examples/custom_generator.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import asyncio

from fastapi import FastAPI, Depends
from fastapi import Depends, FastAPI
from sse_starlette import EventSourceResponse, ServerSentEvent
from starlette import status

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = sse-starlette
version = 1.2.0
version = 1.2.1
description = "SSE plugin for Starlette"
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
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__ = "1.2.0"
__version__ = "1.2.1"

0 comments on commit 534ea90

Please sign in to comment.