Skip to content

Commit fcdad83

Browse files
committed
Release 0.1.0
1 parent f41bcbc commit fcdad83

File tree

9 files changed

+9
-7
lines changed

9 files changed

+9
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ xmake run chat
9696

9797
```lua
9898
add_repositories("mcpplibs-index https://github.com/mcpplibs/mcpplibs-index.git")
99-
add_requires("llmapi 0.0.2")
99+
add_requires("llmapi 0.1.0")
100100

101101
target("demo")
102102
set_kind("binary")

README.zh.hant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ xmake run chat
9696

9797
```lua
9898
add_repositories("mcpplibs-index https://github.com/mcpplibs/mcpplibs-index.git")
99-
add_requires("llmapi 0.0.2")
99+
add_requires("llmapi 0.1.0")
100100

101101
target("demo")
102102
set_kind("binary")

README.zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ xmake run chat
9696

9797
```lua
9898
add_repositories("mcpplibs-index https://github.com/mcpplibs/mcpplibs-index.git")
99-
add_requires("llmapi 0.0.2")
99+
add_requires("llmapi 0.1.0")
100100

101101
target("demo")
102102
set_kind("binary")

docs/en/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add to your `xmake.lua`:
1414

1515
```lua
1616
add_repositories("mcpplibs-index git@github.com:mcpplibs/mcpplibs-index.git")
17-
add_requires("llmapi 0.0.2")
17+
add_requires("llmapi 0.1.0")
1818

1919
target("myapp")
2020
set_kind("binary")

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add to your `xmake.lua`:
1414

1515
```lua
1616
add_repositories("mcpplibs-index git@github.com:mcpplibs/mcpplibs-index.git")
17-
add_requires("llmapi 0.0.2")
17+
add_requires("llmapi 0.1.0")
1818

1919
target("myapp")
2020
set_kind("binary")

docs/zh-hant/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
```lua
1212
add_repositories("mcpplibs-index git@github.com:mcpplibs/mcpplibs-index.git")
13-
add_requires("llmapi 0.0.2")
13+
add_requires("llmapi 0.1.0")
1414

1515
target("myapp")
1616
set_kind("binary")

docs/zh/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
```lua
1212
add_repositories("mcpplibs-index git@github.com:mcpplibs/mcpplibs-index.git")
13-
add_requires("llmapi 0.0.2")
13+
add_requires("llmapi 0.1.0")
1414

1515
target("myapp")
1616
set_kind("binary")

src/llmapi.cppm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import std;
1414
import mcpplibs.llmapi.nlohmann.json;
1515

1616
namespace mcpplibs::llmapi {
17+
export inline constexpr std::string_view VERSION { "0.1.0" };
1718
export using OpenAI = openai::OpenAI;
1819
export using Config = openai::Config;
1920
export using Anthropic = anthropic::Anthropic;

xmake.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
set_languages("c++23")
2+
set_version("0.1.0")
23
set_policy("build.c++.modules", true)
34

45
add_requires("mbedtls 3.6.1")

0 commit comments

Comments
 (0)