Skip to content

Commit

Permalink
2023.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Nov 15, 2022
1 parent 0bdbf7c commit cc99da1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Gradle Grammar-Kit Plugin Changelog

## [Unreleased]
- Set minimum supported Gradle version from `6.7.1` to `6.8`
- Default Grammar-Kit updated to 2023.1
- Make `GenerateParserTask` and `GenerateLexerTask` subclasses of `JavaExec`
- Set minimum supported Gradle version from `6.7.1` to `6.8`

## [2021.2.2]
- Remove redundant `bomConfiguration`
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ changelog {
repositoryUrl + when {
isUnreleased -> when (previousVersion) {
null -> "/commits"
else -> "/compare/v$previousVersion...HEAD"
else -> "/compare/$previousVersion...HEAD"
}

previousVersion == null -> "/commits/$currentVersion"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = This plugin allows you to generate lexers using JetBrains patched JFLex and parsers using Grammar-Kit.
group = org.jetbrains.intellij.plugins
version=2021.2.2
version=2023.1
tags = intellij,jetbrains,idea,Grammar-Kit,JFlex
website = https://github.com/JetBrains/gradle-grammar-kit-plugin
vcsUrl = https://github.com/JetBrains/gradle-grammar-kit-plugin.git
Expand All @@ -9,7 +9,7 @@ pluginImplementationClass = org.jetbrains.grammarkit.GrammarKitPlugin
pluginDisplayName = Gradle Grammar-Kit Plugin
pluginDescription = Plugin for generating lexers and parsers for IntelliJ plugins.

gradleVersion = 7.4.2
gradleVersion = 7.5.1

# Opt-out flag for bundling Kotlin standard library.
# See https://kotlinlang.org/docs/reference/using-gradle.html#dependency-on-the-standard-library for details.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object GrammarKitConstants {
const val GROUP_NAME = "grammarKit"
const val GENERATE_LEXER_TASK_NAME = "generateLexer"
const val GENERATE_PARSER_TASK_NAME = "generateParser"
const val GRAMMAR_KIT_DEFAULT_VERSION = "2021.1.2"
const val GRAMMAR_KIT_DEFAULT_VERSION = "2023.1"
const val JFLEX_DEFAULT_VERSION = "1.7.0-1"
const val MINIMAL_SUPPORTED_GRADLE_VERSION = "6.8"
const val GRAMMAR_KIT_CLASS_PATH_CONFIGURATION_NAME = "grammarKitClassPath"
Expand Down

0 comments on commit cc99da1

Please sign in to comment.