Sha256: 35d25ed44372592d6fc68e177424a79507df2e31fabe55f95e7284eec2a36a53

Contents?: true

Size: 610 Bytes

Versions: 1

Compression:

Stored size: 610 Bytes

Contents

# frozen_string_literal: true

module Lamian
  # Current lamian vewrsion
  #
  # 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 enought to specify '~> a.b'
  # if private API was not used and to specify '~> a.b.c' if it was

  VERSION = "1.0.1"
end

Version data entries

1 entries across 1 versions & 1 rubygems

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