File: version.rb

package info (click to toggle)
ruby-unicode-utils 1.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,988 kB
  • sloc: ruby: 1,877; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 662 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-

module UnicodeUtils

  # Corresponds to the unicode_utils gem version.
  #
  # Conforms to Semantic Versioning as documented at semver.org.
  #
  # Summary:
  # MAJOR.MINOR.PATCHLEVEL
  # - A backwards incompatible change causes a change in MAJOR
  # - New features or non-bugfix improvals cause a change in MINOR
  # - Bugfixes increase only PATCHLEVEL.
  # - Pre-release versions append more info after a dash.
  VERSION = "1.4.0"

  # The version of Unicode implemented by this version of UnicodeUtils.
  #
  #   require "unicode_utils/version"
  #   puts "Unicode #{UnicodeUtils::UNICODE_VERSION}"
  UNICODE_VERSION = "6.2.0"

end