Skip to content

Commit f8b008f

Browse files
authored
Merge pull request #138 from Peefy/chore-bump-0.10.0-rc.1-version
chore: bump kcl lib version to v0.10.0-rc.1
2 parents 226986d + dfe60b5 commit f8b008f

File tree

42 files changed

+50
-46
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+50
-46
lines changed

.github/workflows/cpp-test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ jobs:
4646
components: clippy, rustfmt
4747
- name: Build
4848
run: |
49+
# Set cargo build target on macos
50+
export MACOSX_DEPLOYMENT_TARGET=12.0
4951
mkdir build
5052
cd build
5153
cmake ..

.github/workflows/dotnet-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,4 @@ jobs:
176176
if: "startsWith(github.ref, 'refs/tags/')"
177177
run: |
178178
cd dotnet/KclLib/bin/Release
179-
dotnet nuget push KclLib.0.10.0-beta.2.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
179+
dotnet nuget push KclLib.0.10.0-rc.1.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-lang"
3-
version = "0.10.0-beta.2"
3+
version = "0.10.0-rc.1"
44
edition = "2021"
55
readme = "README.md"
66
documentation = "kcl-lang.io"
@@ -11,4 +11,4 @@ license = "Apache-2.0"
1111

1212
[dependencies]
1313
anyhow = "1"
14-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-beta.2" }
14+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-rc.1" }

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ This way you'll be able to import the above dependency to use the SDK.
8585
<dependency>
8686
<groupId>com.kcl</groupId>
8787
<artifactId>kcl-lib</artifactId>
88-
<version>0.10.0-beta.2-SNAPSHOT</version>
88+
<version>0.10.0-rc.1-SNAPSHOT</version>
8989
</dependency>
9090
```
9191

@@ -187,7 +187,7 @@ This way you'll be able to import the above dependency to use the SDK.
187187
<dependency>
188188
<groupId>com.kcl</groupId>
189189
<artifactId>kcl-lib</artifactId>
190-
<version>0.10.0-beta.2-SNAPSHOT</version>
190+
<version>0.10.0-rc.1-SNAPSHOT</version>
191191
</dependency>
192192
```
193193

@@ -221,7 +221,7 @@ For CMake, you can use FetchContent to add KCL C++ Lib to your project.
221221
FetchContent_Declare(
222222
kcl-lib
223223
GIT_REPOSITORY https://github.com/kcl-lang/lib.git
224-
GIT_TAG v0.10.0-beta.2
224+
GIT_TAG v0.10.0-rc.1
225225
SOURCE_SUBDIR cpp
226226
)
227227
FetchContent_MakeAvailable(kcl-lib)

c/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-lib-c"
3-
version = "0.10.0-beta.2"
3+
version = "0.10.0-rc.1"
44
edition = "2021"
55
publish = false
66

@@ -12,4 +12,4 @@ doc = false
1212
cbindgen = "0.26.0"
1313

1414
[dependencies]
15-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-beta.2" }
15+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-rc.1" }

cpp/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ foreach(EXE IN LISTS EXECUTABLES)
4848
target_link_libraries(${EXE} PRIVATE userenv ws2_32 bcrypt)
4949
endif()
5050
if(APPLE)
51+
find_library(CORESERVICES_LIB CoreServices)
52+
target_link_libraries(${EXE} PRIVATE ${CORESERVICES_LIB})
5153
target_link_libraries(${EXE} PRIVATE "-framework CoreFoundation -framework Security")
5254
endif()
5355
endforeach()

cpp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
name = "kcl-lib-cpp"
33
publish = false
44
edition = "2021"
5-
version = "0.10.0-beta.2"
5+
version = "0.10.0-rc.1"
66

77
[lib]
88
crate-type = ["staticlib"]
99

1010
[dependencies]
1111
anyhow = "1.0"
1212
cxx = "1.0"
13-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-beta.2" }
13+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-rc.1" }
1414

1515
[build-dependencies]
1616
cxx-build = "1.0"

cpp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You can use FetchContent to add KCL C++ Lib to your project.
1212
FetchContent_Declare(
1313
kcl-lib
1414
GIT_REPOSITORY https://github.com/kcl-lang/lib.git
15-
GIT_TAG v0.10.0-beta.2
15+
GIT_TAG v0.10.0-rc.1
1616
SOURCE_SUBDIR cpp
1717
)
1818
FetchContent_MakeAvailable(kcl-lib)
@@ -24,7 +24,7 @@ Or you can download the source code and add it to your project.
2424
mkdir third_party
2525
cd third_party
2626
git clone https://github.com/kcl-lang/lib.git
27-
git checkout v0.10.0-beta.2
27+
git checkout v0.10.0-rc.1
2828
```
2929

3030
```shell

dotnet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ crate-type = ["cdylib"]
88
doc = false
99

1010
[dependencies]
11-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-beta.2" }
11+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-rc.1" }

dotnet/KclLib/KclLib.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PropertyGroup>
1212
<AssemblyName>KclLib</AssemblyName>
1313
<PackageId>KclLib</PackageId>
14-
<Version>0.10.0-beta.2</Version>
14+
<Version>0.10.0-rc.1</Version>
1515
<IncludeSymbols>true</IncludeSymbols>
1616
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1717
<RepositoryUrl>https://github.com/kcl-lang</RepositoryUrl>

0 commit comments

Comments
 (0)