Skip to content

Commit 24783bc

Browse files
authored
Bump version to v0.3.5 (#178)
* Bump version to v0.3.5 * Update c-cpp.yml * Update build-doc.yml * Update cuda.yml
1 parent e7c4465 commit 24783bc

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Doc
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
submodules: true
1515
- name: Install Dependencies

.github/workflows/c-cpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
matrix:
1010
os: [ubuntu-latest, macos-latest]
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
submodules: true
1515
- name: Cache maven packages
16-
uses: actions/cache@v2
16+
uses: actions/cache@v4
1717
with:
1818
path: ~/.m2/repository
1919
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/cuda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
os: [self-hosted]
1111
if: ${{ false }}
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
submodules: true
1616
- name: Build

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(libgrape-lite C CXX)
44

55
set(LIBGRAPELITE_MAJOR_VERSION 0)
66
set(LIBGRAPELITE_MINOR_VERSION 3)
7-
set(LIBGRAPELITE_PATCH_VERSION 4)
7+
set(LIBGRAPELITE_PATCH_VERSION 5)
88
set(LIBGRAPELITE_VERSION ${LIBGRAPELITE_MAJOR_VERSION}.${LIBGRAPELITE_MINOR_VERSION}.${LIBGRAPELITE_PATCH_VERSION})
99

1010
# ------------------------------------------------------------------------------

0 commit comments

Comments
 (0)