Skip to content
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
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,16 @@ jobs:
- name: Wait for posthog-ruby to be available
run: gem exec rubygems-await posthog-ruby-*.gem

# Build and publish posthog-rails
# Build and publish posthog-rails (must build from its directory so Dir.glob resolves correctly)
- name: Build posthog-rails
run: gem build posthog-rails/posthog-rails.gemspec
run: gem build posthog-rails.gemspec
working-directory: posthog-rails

- name: Publish posthog-rails
run: gem push posthog-rails-*.gem
run: gem push posthog-rails/posthog-rails-*.gem

- name: Wait for posthog-rails to be available
run: gem exec rubygems-await posthog-rails-*.gem
run: gem exec rubygems-await posthog-rails/posthog-rails-*.gem

# Create and push git tag
- name: Create git tag
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.5.1 - 2026-02-06

1. Fix `posthog-rails` deployment

## 3.5.0 - 2026-02-05

1. feat: Add posthog-rails gem for automatic Rails exception tracking
Expand Down
2 changes: 1 addition & 1 deletion lib/posthog/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module PostHog
VERSION = '3.5.0'
VERSION = '3.5.1'
end