File: Version.hs

package info (click to toggle)
haskell-unicode-data 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,004 kB
  • sloc: haskell: 26,075; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 614 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- DO NOT EDIT MANUALLY: autogenerated by ucd2haskell
{-# OPTIONS_HADDOCK hide #-}

-- |
-- Module      : Unicode.Internal.Char.Version
-- Copyright   : (c) 2024 Composewell Technologies and Contributors
-- License     : Apache-2.0
-- Maintainer  : streamly@composewell.com
-- Stability   : experimental

module Unicode.Internal.Char.Version (unicodeVersion) where

import Data.Version (Version, makeVersion)

-- | Version of the Unicode standard used by this package:
-- [15.1.0](https://www.unicode.org/versions/Unicode15.1.0/).
--
-- @since 0.3.0
unicodeVersion :: Version
unicodeVersion = makeVersion [15,1,0]