Skip to content

Commit

Permalink
Update to 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
lerno committed Jun 12, 2024
1 parent b12be2a commit 38eb973
Show file tree
Hide file tree
Showing 58 changed files with 3,384 additions and 407 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@

## [Unreleased]

## [0.0.14] - 2024-06-12

### Updated

- 0.6.0 compatibility: Support new syntax for enums.

## [0.0.13] - 2023-10-25

### Updated

- Support `$feature`, `$is_const`, `$and`, `$or`.
- Support `asm` attributes.
- Support new `$defined`.
- Support `interface`.
- Remove support for `$checks`.

## [0.0.12] - 2023-07-24

### Updated
Expand Down
17 changes: 6 additions & 11 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,14 @@ changelog {
repositoryUrl = properties("pluginRepositoryUrl")
}

// Configure Gradle Qodana Plugin - read more: https://github.com/JetBrains/gradle-qodana-plugin
qodana {
cachePath = provider { file(".qodana").canonicalPath }
reportPath = provider { file("build/reports/inspections").canonicalPath }
saveReport = true
showReport = environment("QODANA_SHOW_REPORT").map { it.toBoolean() }.getOrElse(false)
}

// Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration
koverReport {
defaults {
xml {
onCheck = true
kover {
reports {
total {
xml {
onCheck = true
}
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@ pluginGroup = com.github.c3lang.c3intellij
pluginName = c3intellij
pluginRepositoryUrl = https://github.com/c3lang/c3intellij
# SemVer format -> https://semver.org
pluginVersion = 0.0.12
pluginVersion = 0.0.14

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 222
pluginUntilBuild = 241.*
pluginUntilBuild = 242.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IU
platformVersion = 2023.1.1
platformVersion = 2023.2.6

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
ideaPlugins = com.intellij.java, com.intellij.nativeDebug:231.8109.91
ideaPlugins = com.intellij.java, com.intellij.nativeDebug:232.9559.10
ideaCommunityPlugins = com.intellij.java
clionPlugins = com.intellij.cidr.base, com.intellij.clion

# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.1.1
gradleVersion = 8.7


# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ annotations = "24.0.1"

# plugins
dokka = "1.8.10"
kotlin = "1.8.21"
changelog = "2.1.0"
gradleIntelliJPlugin = "1.14.1"
qodana = "0.1.13"
kover = "0.7.1"
grammarkit = "2022.3.1"
kotlin = "2.0.0"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.17.3"
qodana = "2024.1.5"
kover = "0.8.0"
grammarkit = "2022.3.2"

[libraries]
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
Expand Down
Loading

0 comments on commit 38eb973

Please sign in to comment.