Skip to content

Commit b9a7212

Browse files
authored
Update VS Code plugin for new compile commands (#179)
* Update VS Code plugin for new compile commands * Fix miss
1 parent 007e619 commit b9a7212

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ targetCompatibility = 11
1212

1313
allprojects {
1414
group = "edu.wpi.first"
15-
version = "2024.4.0"
15+
version = "2024.5.0"
1616

1717
if (project.hasProperty('publishVersion')) {
1818
version = project.publishVersion
@@ -30,7 +30,7 @@ dependencies {
3030
api project(':ToolchainPlugin')
3131
implementation 'org.ajoberstar.grgit:grgit-core:5.0.0'
3232
implementation 'com.google.code.gson:gson:2.8.6'
33-
api 'edu.wpi.first:gradle-cpp-vscode:1.3.0'
33+
api 'edu.wpi.first:gradle-cpp-vscode:2.0.0'
3434

3535
testImplementation('org.spockframework:spock-core:2.0-M4-groovy-3.0') {
3636
exclude group: 'org.codehaus.groovy'

testing/cpp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import edu.wpi.first.toolchain.NativePlatforms
22

33
plugins {
44
id "cpp"
5-
id "edu.wpi.first.NativeUtils" version "2024.4.0"
5+
id "edu.wpi.first.NativeUtils" version "2024.5.0"
66
}
77

88
nativeUtils.addWpiNativeUtils()

0 commit comments

Comments
 (0)