obsws-ruby/lib/obsws/version.rb
onyx-and-iris 7e580dc91a check identified state in Event::Client
add passwordless test for event client

patch bump
2023-08-11 22:12:28 +01:00

26 lines
246 B
Ruby

module OBSWS
module VERSION
module_function
def major
0
end
def minor
5
end
def patch
8
end
def to_a
[major, minor, patch]
end
def to_s
to_a.join(".")
end
end
end