NAME
Search::Typesense::Version - Version object for the Typesense server version
VERSION
version 0.08
DESCRIPTION
Do not use directly. This is returned by the typesense_version
method from Search::Typesense.
METHODS
version_string
my $version = $typesense->typesense_version;
my $version_string = $version->version_string;
Returns the semantic version string, such as 0.19.0
.
major
my $version = $typesense->typesense_version;
my $major = $version->major;
Returns the major version number.
minor
my $version = $typesense->typesense_version;
my $minor = $version->minor;
Returns the minor version number.
patch
my $version = $typesense->typesense_version;
my $patch = $version->patch;
Returns the patch version number.
comparator
Returns a numeric string suitable for numeric comparisons between versions.
AUTHOR
Curtis "Ovid" Poe <ovid@allaroundtheworld.fr>
COPYRIGHT AND LICENSE
This software is copyright (c) 2021 by Curtis "Ovid" Poe.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.