Skip to content

Commit 03f494e

Browse files
committed
buid(version): update version
1 parent 949e975 commit 03f494e

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Set update schedule for GitHub Actions
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
os: [ubuntu-22.04]
19+
os: [ubuntu-latest]
2020
include:
21-
- os: ubuntu-22.04
21+
- os: ubuntu-latest
2222

2323
steps:
2424
- uses: actions/checkout@v2

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.24)
55
#
66
project(
77
stdsharp
8-
VERSION 0.6.4
8+
VERSION 0.7.0
99
LANGUAGES CXX)
1010

1111
include(cmake/Utils.cmake)
@@ -32,7 +32,7 @@ target_link_libraries(
3232
verbose_message("Successfully added all dependencies and linked against them.")
3333

3434
target_install(${PROJECT_NAME} COMPATIBILITY SameMajorVersion DEPENDENCIES
35-
fmt;ctre;range-v3;nameof)
35+
ctre;range-v3;nameof;Microsoft.GSL)
3636

3737
install(FILES cmake/Utils.cmake
3838
DESTINATION ${${PROJECT_NAME}_INSTALL_CMAKEDIR}/stdsharp)

0 commit comments

Comments
 (0)