Skip to content

Commit

Permalink
Merge pull request #471 from rollbar/brianr/restore-cli-and-pyramid
Browse files Browse the repository at this point in the history
Restore build for pyramid and cli entrypoints
  • Loading branch information
danielmorell authored Jan 21, 2025
2 parents be4fdac + 7367d5d commit 3aca977
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion rollbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

Expand Down

0 comments on commit 3aca977

Please sign in to comment.