Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 1.25.0 #491

Merged
merged 1 commit into from
Nov 21, 2024
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
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.24.0"
".": "1.25.0"
}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [1.25.0](https://github.com/momentohq/client-sdk-python/compare/v1.24.0...v1.25.0) (2024-11-21)


### Features

* support topic sequence page ([#492](https://github.com/momentohq/client-sdk-python/issues/492)) ([d8e5039](https://github.com/momentohq/client-sdk-python/commit/d8e5039007f72794a23680cd53602b23076d71ad))


### Miscellaneous

* **deps-dev:** bump braces in /examples/lambda/infrastructure ([#484](https://github.com/momentohq/client-sdk-python/issues/484)) ([03601a1](https://github.com/momentohq/client-sdk-python/commit/03601a1e5faa877a98b1e9d28eb7fd9e6e9d1062))
* improve resource exhausted error message ([#485](https://github.com/momentohq/client-sdk-python/issues/485)) ([b4439bd](https://github.com/momentohq/client-sdk-python/commit/b4439bd1b707a450b9c02a1b821579111105b115))
* release-please workflow should pick up feat, fix, and chore commits ([#486](https://github.com/momentohq/client-sdk-python/issues/486)) ([6e975cb](https://github.com/momentohq/client-sdk-python/commit/6e975cb4dea071147573cb18dce2d2af4b3f8878))
* specify path to release-please manifest ([#487](https://github.com/momentohq/client-sdk-python/issues/487)) ([227aa40](https://github.com/momentohq/client-sdk-python/commit/227aa40697d3604ef7d720e52aabdaec348855dc))
* update license file ([#488](https://github.com/momentohq/client-sdk-python/issues/488)) ([bb61d81](https://github.com/momentohq/client-sdk-python/commit/bb61d81653921952022337fb608d645f6a67924d))
* upgrade proto dependency version ([#489](https://github.com/momentohq/client-sdk-python/issues/489)) ([77b855f](https://github.com/momentohq/client-sdk-python/commit/77b855f9dec8311c5830e6189200a9a9de7b08d7))

## [1.24.0](https://github.com/momentohq/client-sdk-python/compare/v1.23.5...v1.24.0) (2024-09-27)


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.24.0"
version = "1.25.0"

authors = ["Momento <[email protected]>"]
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.24.0" # x-release-please-version
__version__ = "1.25.0" # x-release-please-version

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