From 8e8e0ae72f24f695e10c478151164361a434c99e Mon Sep 17 00:00:00 2001 From: Brian Rue Date: Mon, 20 Jan 2025 22:22:09 -0800 Subject: [PATCH 1/2] Restore build for pyramid and cli entrypoints --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index db92b1b8..ec44a061 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,3 +53,9 @@ build-backend = "setuptools.build_meta" [tool.setuptools.dynamic] version = {attr = "rollbar.__version__"} + +[project.scripts] +rollbar = "rollbar.cli:main" + +[project.entry-points."paste.filter_app_factory"] +pyramid = "rollbar.contrib.pyramid:create_rollbar_middleware" From bfe01a6d01e2ea210dd3d3a6227dfe190c29e1d2 Mon Sep 17 00:00:00 2001 From: Brian Rue Date: Mon, 20 Jan 2025 22:46:23 -0800 Subject: [PATCH 2/2] Release 1.1.2 --- CHANGELOG.md | 4 ++++ rollbar/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f13a2b38..bc1a0a1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ The change log is also available on the [GitHub Releases Page](https://github.com/rollbar/pyrollbar/releases). +**1.1.2** + +Fixed build missing entrypoints for pyramid and cli in [#471](https://github.com/rollbar/pyrollbar/pull/471) + **1.1.1** Fixed #465 httpx 0.28.0 not compatible with pyrollbar by @danielmorell in [#466](https://github.com/rollbar/pyrollbar/pull/466) diff --git a/rollbar/__init__.py b/rollbar/__init__.py index d9a9c567..1adf3a9c 100644 --- a/rollbar/__init__.py +++ b/rollbar/__init__.py @@ -24,7 +24,7 @@ from rollbar.lib import events, filters, dict_merge, transport, defaultJSONEncode -__version__ = '1.1.1' +__version__ = '1.1.2' __log_name__ = 'rollbar' log = logging.getLogger(__log_name__)