Bump version, improve how version is stored for better commit history (#2526)
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module HttpHelper
|
||||
USER_AGENT = "#{HTTP::Request::USER_AGENT} (Mastodon/#{Mastodon::VERSION}; +http://#{Rails.configuration.x.local_domain}/)"
|
||||
USER_AGENT = "#{HTTP::Request::USER_AGENT} (Mastodon/#{Mastodon::Version}; +http://#{Rails.configuration.x.local_domain}/)"
|
||||
|
||||
def http_client(options = {})
|
||||
timeout = { write: 10, connect: 10, read: 10 }.merge(options)
|
||||
|
@ -27,6 +27,6 @@ class InstancePresenter
|
||||
end
|
||||
|
||||
def version_number
|
||||
Mastodon::VERSION
|
||||
Mastodon::Version
|
||||
end
|
||||
end
|
||||
|
@ -4,4 +4,4 @@ node(:uri) { site_hostname }
|
||||
node(:title) { Setting.site_title }
|
||||
node(:description) { Setting.site_description }
|
||||
node(:email) { Setting.site_contact_email }
|
||||
node(:version) { Mastodon::VERSION }
|
||||
node(:version) { Mastodon::Version }
|
||||
|
Reference in New Issue
Block a user