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