Skip to content

Commit

Permalink
0.9.5-alpha.7
Browse files Browse the repository at this point in the history
  • Loading branch information
PHPirates committed Mar 9, 2024
1 parent ffb37a4 commit 420f639
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@

### Fixed

## [0.9.5-alpha.7] - 2024-03-09

### Added
* Add support for the nomencl package
* Add starred and capitalized versions of cleveref commands to exceptions for non-breaking space inspection, by @niknetniko

### Fixed
* Fix a parser issue when having a single \begin or \end in a \newcommand definition

## [0.9.5-alpha.6] - 2024-03-01

### Added
Expand Down
23 changes: 12 additions & 11 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.jetbrains.changelog.Changelog
Expand Down Expand Up @@ -103,18 +104,18 @@ dependencies {
implementation("com.beust:klaxon:5.6")

// Parsing xml
implementation("com.fasterxml.jackson.core:jackson-core:2.16.1")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.16.1")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.16.1")
implementation("com.fasterxml.jackson.core:jackson-core:2.16.2")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.16.2")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.16.2")

// Http requests
implementation("io.ktor:ktor-client-core:2.3.8")
implementation("io.ktor:ktor-client-cio:2.3.8")
implementation("io.ktor:ktor-client-auth:2.3.8")
implementation("io.ktor:ktor-client-content-negotiation:2.3.8")
implementation("io.ktor:ktor-server-core:2.3.8")
implementation("io.ktor:ktor-server-jetty:2.3.8")
implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.8")
implementation("io.ktor:ktor-client-core:2.3.9")
implementation("io.ktor:ktor-client-cio:2.3.9")
implementation("io.ktor:ktor-client-auth:2.3.9")
implementation("io.ktor:ktor-client-content-negotiation:2.3.9")
implementation("io.ktor:ktor-server-core:2.3.9")
implementation("io.ktor:ktor-server-jetty:2.3.9")
implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.9")

// Comparing versions
implementation("org.apache.maven:maven-artifact:4.0.0-alpha-12")
Expand Down Expand Up @@ -238,7 +239,7 @@ intellij {
// Generate a Hub token at https://hub.jetbrains.com/users/me?tab=authentification
// You should provide it either via environment variables (ORG_GRADLE_PROJECT_intellijPublishToken) or Gradle task parameters (-Dorg.gradle.project.intellijPublishToken=mytoken)
tasks.publishPlugin {
dependsOn("patchChangelog")
// dependsOn("patchChangelog")
dependsOn("useLatestVersions")
// dependsOn("dependencyCheckAnalyze")

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pluginVersion = 0.9.5-alpha.6
pluginVersion = 0.9.5-alpha.7

# Info about build ranges: https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
# Note that an xyz branch corresponds to version 20xy.z and a since build of xyz.*
Expand Down

0 comments on commit 420f639

Please sign in to comment.