Skip to content

Commit

Permalink
prepared release of version 3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tawakalt committed Aug 15, 2024
1 parent 7cee010 commit 261a464
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . -->

<!-- TOWNCRIER -->

## [3.9.1] - 2024-08-15

Rasa_Sdk 3.9.1 (2024-08-15)
### Bugfixes
- [#1129](https://github.com/rasahq/rasa-sdk/issues/1129): Fixed health check for the case when the action service is run in gRPC mode.

### Miscellaneous internal changes
- [#1123](https://github.com/rasahq/rasa-sdk/issues/1123), [#1130](https://github.com/rasahq/rasa-sdk/issues/1130)


## [3.9.0] - 2024-07-03

Rasa_Sdk 3.9.0 (2024-07-03)
Expand Down
1 change: 0 additions & 1 deletion changelog/1123.misc.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1129.bugfix.md

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/1130.misc.md

This file was deleted.

16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "rasa-sdk"
version = "3.9.0"
version = "3.9.1"
description = "Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants"
authors = [ "Rasa Technologies GmbH <[email protected]>",]
maintainers = [ "Tom Bocklisch <[email protected]>",]
Expand Down Expand Up @@ -67,11 +67,7 @@ exclude = "rasa_sdk/grpc_py"
[tool.ruff]
line-length = 88
target-version = "py38"
exclude = [ "rasa_sdk/grpc_py", "eggs", ".git", ".pytest_cache", "build", "dist", ".DS_Store"]

[tool.ruff.lint]
ignore = [ "D100", "D101", "D102", "D103", "D104", "D105", "RUF005",]
select = [ "D", "E", "F", "W", "RUF",]
exclude = [ "rasa_sdk/grpc_py", "eggs", ".git", ".pytest_cache", "build", "dist", ".DS_Store",]

[tool.poetry.dependencies]
python = ">=3.8,<3.11"
Expand Down Expand Up @@ -106,13 +102,17 @@ semantic_version = "^2.8.5"
mypy = "^1.5"
sanic-testing = "^22.12"

[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint]
ignore = [ "D100", "D101", "D102", "D103", "D104", "D105", "RUF005",]
select = [ "D", "E", "F", "W", "RUF",]

[tool.pytest.ini_options]
python_functions = "test_"
asyncio_mode = "auto"

[tool.ruff.lint.pydocstyle]
convention = "google"

[tool.poetry.group.dev.dependencies]
ruff = ">=0.3.5,<0.4.0"
pytest-asyncio = "^0.21.0"
Expand Down
2 changes: 1 addition & 1 deletion rasa_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# this file will automatically be changed,
# do not add anything but the version number here!
__version__ = "3.9.0"
__version__ = "3.9.1"

0 comments on commit 261a464

Please sign in to comment.