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)
- add `split_string_by_unicode_codepoint` initially

View file

@ -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

View file

@ -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"