# frozen_string_literal: true
module Mastodon
module Version
module_function
def major
1
end
def minor
4
def patch
7
def pre
nil
def to_a
[major, minor, patch, pre].compact
def to_s
to_a.join('.')