Skip to content

Commit 2b0ce3c

Browse files
Merge branch 'master' into temciuc--not-store-the-challenge-in-helper
2 parents 3df102b + 6073bc2 commit 2b0ce3c

5 files changed

Lines changed: 33 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
release:
9+
name: Publish to Rubygems
10+
11+
runs-on: ubuntu-latest
12+
13+
environment: release
14+
15+
permissions:
16+
contents: write
17+
id-token: write
18+
19+
steps:
20+
- uses: actions/checkout@v6
21+
22+
- name: Setup Ruby
23+
uses: ruby/setup-ruby@v1
24+
with:
25+
bundler-cache: true
26+
27+
- name: Publish to RubyGems
28+
uses: rubygems/release-gem@v1

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ AllCops:
77
NewCops: enable
88
Exclude:
99
- "spec/internal/**/*"
10+
- "spec/tmp/**/*"
1011
- "vendor/**/*"
1112
- "gemfiles/**/*"
1213
- "lib/devise/strategies/database_authenticatable.rb"

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## [v0.2.1](https://github.com/cedarcode/devise-webauthn/compare/v0.2.0...v0.2.1/) - 2025-12-10
6+
57
- Add form helpers for security key registration and 2FA authentication.
68
- Fix incorrect call to `resource_name` instead of using passed `resource` param in `login_with_security_key_button` helper.
79
- Fix `NoMethodError` when calling `second_factor_enabled?` on resources without 2FA.

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
devise-webauthn (0.2.0)
4+
devise-webauthn (0.2.1)
55
devise (~> 4.9)
66
webauthn (~> 3.0)
77

lib/devise/webauthn/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Devise
44
module Webauthn
5-
VERSION = "0.2.0"
5+
VERSION = "0.2.1"
66
end
77
end

0 commit comments

Comments
 (0)