From 8b93467985adbd901bebbaf8dde9a7ad7f71087e Mon Sep 17 00:00:00 2001 From: Tan Kian-ting Date: Thu, 31 Aug 2023 19:12:14 +0800 Subject: [PATCH] add changes --- CHANGES | 6 +++++- dune-project | 4 ++-- stringCodepointSplitter.opam | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 9cd5546..f28016d 100644 --- a/CHANGES +++ b/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 \ No newline at end of file + - add `split_string_by_unicode_codepoint` initially diff --git a/dune-project b/dune-project index 428891d..e6318bc 100644 --- a/dune-project +++ b/dune-project @@ -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 diff --git a/stringCodepointSplitter.opam b/stringCodepointSplitter.opam index b8f46bc..36d62a3 100644 --- a/stringCodepointSplitter.opam +++ b/stringCodepointSplitter.opam @@ -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"