From 218531564397ce7d5e302eaecf1f7d642b3b819b Mon Sep 17 00:00:00 2001 From: yanyiwu Date: Fri, 2 May 2025 11:38:31 +0800 Subject: [PATCH 1/2] fix: remove outdated entry from jieba dictionary --- dict/jieba.dict.utf8 | 1 - 1 file changed, 1 deletion(-) diff --git a/dict/jieba.dict.utf8 b/dict/jieba.dict.utf8 index 0015948..01235a9 100644 --- a/dict/jieba.dict.utf8 +++ b/dict/jieba.dict.utf8 @@ -312698,7 +312698,6 @@ T恤 4 n 部属 1126 n 部属工作 3 n 部属院校 3 n -部手机 33 n 部族 643 n 部标 4 n 部省级 2 n From 9d8af2116e6a0297ec5be5c37a6c5e7c72bd28e2 Mon Sep 17 00:00:00 2001 From: yanyiwu Date: Fri, 2 May 2025 11:53:33 +0800 Subject: [PATCH 2/2] build: update CI workflow to include latest OS versions --- .github/workflows/cmake.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index aa5c704..13875f2 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -16,13 +16,15 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ - ubuntu-20.04, - ubuntu-22.04, + os: [ + ubuntu-22.04, + ubuntu-latest, macos-13, macos-14, + macos-latest, windows-2019, windows-2022, + windows-latest, ] cpp_version: [11, 14, 17, 20]