Sha256: 2ff22d42ddf6a49de40bc1f31b334bccad077d66317653f1def0e36e8d6bacb7

Contents?: true

Size: 609 Bytes

Versions: 1

Compression:

Stored size: 609 Bytes

Contents

# frozen_string_literal: true

module Lamian
  # Current lamian version
  #
  # format: 'a.b.c' with possible suffixes such as alpha
  # * a is for major version, it is guaranteed to be changed
  #   if back-compatibility of public API is broken
  # * b is for minor version, it is guaranteed to be changed
  #   on public API changes and also if private API
  #   back-compatibility is broken
  # * c is for incremental version, it is updated in other cases
  # According to this, it is enough to specify '~> a.b'
  # if private API was not used and to specify '~> a.b.c' if it was

  VERSION = "1.10.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lamian-1.10.0 lib/lamian/version.rb