Browse Source

Bump version, improve how version is stored for better commit history (#2526)

closed-social-glitch-2
Eugen Rochko 7 years ago
committed by GitHub
parent
commit
b48c9013aa
4 changed files with 30 additions and 4 deletions
  1. +1
    -1
      app/helpers/http_helper.rb
  2. +1
    -1
      app/presenters/instance_presenter.rb
  3. +1
    -1
      app/views/api/v1/instances/show.rabl
  4. +27
    -1
      lib/mastodon/version.rb

+ 1
- 1
app/helpers/http_helper.rb View File

@ -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)

+ 1
- 1
app/presenters/instance_presenter.rb View File

@ -27,6 +27,6 @@ class InstancePresenter
end
def version_number
Mastodon::VERSION
Mastodon::Version
end
end

+ 1
- 1
app/views/api/v1/instances/show.rabl View File

@ -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 }

+ 27
- 1
lib/mastodon/version.rb View File

@ -1,5 +1,31 @@
# frozen_string_literal: true
module Mastodon
VERSION = '1.2.2'
module Version
module_function
def major
1
end
def minor
3
end
def patch
0
end
def pre
nil
end
def to_a
[major, minor, patch, pre].compact
end
def to_s
to_a.join('.')
end
end
end

Loading…
Cancel
Save