File: version.rb

package info (click to toggle)
ruby-snaky-hash 2.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,156 kB
  • sloc: ruby: 1,298; javascript: 529; makefile: 4; sh: 4
file content (13 lines) | stat: -rw-r--r-- 281 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module SnakyHash
  # Defines the version information for SnakyHash
  #
  # @api public
  module Version
    # Current version of SnakyHash
    #
    # @return [String] the current version in semantic versioning format
    VERSION = "2.0.3"
  end
end