Skip to content

Commit a392361

Browse files
Merge pull request #3765 from bitcoin-dot-org/22.0
Add v22.0 release
2 parents 820c953 + c500486 commit a392361

File tree

2 files changed

+1203
-2
lines changed

2 files changed

+1203
-2
lines changed

_plugins/releases.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def initialize(site, base, lang, srcdir, src, output_directory)
2828

2929
## Die if required_ variables aren't set
3030
if self.data['required_version']
31-
version = self.data['required_version']
31+
version = self.data['required_version'].to_s
3232
else
3333
abort("Error: Variable required_version not set when processing " + src)
3434
end
@@ -46,7 +46,7 @@ def initialize(site, base, lang, srcdir, src, output_directory)
4646
self.data['lang'] = lang
4747

4848
## Only processes numeric version numbers with up to five decimals
49-
self.data['versionint'] = versiontoint(self.data['required_version'])
49+
self.data['versionint'] = versiontoint(self.data['required_version'].to_s)
5050

5151
self.data['layout'] = 'release'
5252
self.data['category'] = 'release'

0 commit comments

Comments
 (0)