add changes

This commit is contained in:
Tan, Kian-ting 2023-08-31 19:12:14 +08:00
parent 6a1f3000c5
commit 8b93467985
3 changed files with 9 additions and 5 deletions

View file

@ -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) ## v0.0.1 (2023-08-27)
- add `split_string_by_unicode_codepoint` initially - add `split_string_by_unicode_codepoint` initially

View file

@ -2,7 +2,7 @@
(cram enable) (cram enable)
(name stringCodepointSplitter) (name stringCodepointSplitter)
(version 0.0.1) (version 0.0.2)
(generate_opam_files true) (generate_opam_files true)
(source (source
@ -22,7 +22,7 @@
(description "Split a string to a list of strings of a character by the unicode codepoint. (description "Split a string to a list of strings of a character by the unicode codepoint.
It requires module Uutf.") It requires module Uutf.")
(depends ocaml ocamlfind dune uutf) (depends (ocaml (>= 4.06)) ocamlfind dune uutf)
(tags (string utf8))) (tags (string utf8)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project ; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.0.1" version: "0.0.2"
synopsis: synopsis:
"Split a string to a list of strings of a character by the unicode codepoint" "Split a string to a list of strings of a character by the unicode codepoint"
description: """ description: """
@ -13,7 +13,7 @@ tags: ["string" "utf8"]
homepage: "https://github.com/yoxem/stringCodepointSplitter" homepage: "https://github.com/yoxem/stringCodepointSplitter"
bug-reports: "https://github.com/Yoxem/stringCodepointSplitter/issues" bug-reports: "https://github.com/Yoxem/stringCodepointSplitter/issues"
depends: [ depends: [
"ocaml" "ocaml" {>= "4.06"}
"ocamlfind" "ocamlfind"
"dune" {>= "3.9"} "dune" {>= "3.9"}
"uutf" "uutf"