Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.27.0"
".": "1.27.1"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.27.1](https://github.com/momentohq/client-sdk-python/compare/v1.27.0...v1.27.1) (2025-06-27)


### Bug Fixes

* subscriptions bookkeeping in pubsub clients ([#510](https://github.com/momentohq/client-sdk-python/issues/510)) ([0d5e514](https://github.com/momentohq/client-sdk-python/commit/0d5e5144a3ad953990d83a1f880a35028c2d4ffc))


### Miscellaneous

* add timeout to topic subscribe ([#511](https://github.com/momentohq/client-sdk-python/issues/511)) ([0169714](https://github.com/momentohq/client-sdk-python/commit/01697140e479b67825c4d86bbfba9eab38969369))
* **deps:** bump momento from 1.26.0 to 1.27.0 in /examples ([#508](https://github.com/momentohq/client-sdk-python/issues/508)) ([62ac4ae](https://github.com/momentohq/client-sdk-python/commit/62ac4ae93bbd62a3583b91a76df570ea414d6096))

## [1.27.0](https://github.com/momentohq/client-sdk-python/compare/v1.26.0...v1.27.0) (2025-05-07)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "momento"
version = "1.27.0"
version = "1.27.1"

authors = ["Momento <hello@momentohq.com>"]
description = "SDK for Momento"
Expand Down
2 changes: 1 addition & 1 deletion src/momento/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from .topic_client import TopicClient
from .topic_client_async import TopicClientAsync

__version__ = "1.27.0" # x-release-please-version
__version__ = "1.27.1" # x-release-please-version

logging.getLogger("momentosdk").addHandler(logging.NullHandler())
logs.initialize_momento_logging()
Expand Down
Loading