add changes
This commit is contained in:
parent
6a1f3000c5
commit
8b93467985
3 changed files with 9 additions and 5 deletions
4
CHANGES
4
CHANGES
|
@ -1,2 +1,6 @@
|
|||
## v0.0.2 (2023-08-30)
|
||||
- add more tests
|
||||
- optimalize the list processing
|
||||
- disable dynamic linking to uutf
|
||||
## v0.0.1 (2023-08-27)
|
||||
- add `split_string_by_unicode_codepoint` initially
|
|
@ -2,7 +2,7 @@
|
|||
(cram enable)
|
||||
|
||||
(name stringCodepointSplitter)
|
||||
(version 0.0.1)
|
||||
(version 0.0.2)
|
||||
(generate_opam_files true)
|
||||
|
||||
(source
|
||||
|
@ -22,7 +22,7 @@
|
|||
(description "Split a string to a list of strings of a character by the unicode codepoint.
|
||||
It requires module Uutf.")
|
||||
|
||||
(depends ocaml ocamlfind dune uutf)
|
||||
(depends (ocaml (>= 4.06)) ocamlfind dune uutf)
|
||||
(tags (string utf8)))
|
||||
|
||||
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
version: "0.0.1"
|
||||
version: "0.0.2"
|
||||
synopsis:
|
||||
"Split a string to a list of strings of a character by the unicode codepoint"
|
||||
description: """
|
||||
|
@ -13,7 +13,7 @@ tags: ["string" "utf8"]
|
|||
homepage: "https://github.com/yoxem/stringCodepointSplitter"
|
||||
bug-reports: "https://github.com/Yoxem/stringCodepointSplitter/issues"
|
||||
depends: [
|
||||
"ocaml"
|
||||
"ocaml" {>= "4.06"}
|
||||
"ocamlfind"
|
||||
"dune" {>= "3.9"}
|
||||
"uutf"
|
||||
|
|
Loading…
Reference in a new issue