diff --git a/examples/pattern-plugins/build.gradle b/examples/pattern-plugins/build.gradle index ee0763b..1a17f14 100644 --- a/examples/pattern-plugins/build.gradle +++ b/examples/pattern-plugins/build.gradle @@ -9,7 +9,7 @@ spotless { } } -def patternLibVersion = project.findProperty("deps.pattern-lib.version") ?: '1.0' +def patternLibVersion = project.findProperty("deps.pattern-lib.version") ?: releaseVersion java { toolchain { diff --git a/examples/pattern-plugins/gradle.properties b/examples/pattern-plugins/gradle.properties new file mode 100644 index 0000000..c1c2e27 --- /dev/null +++ b/examples/pattern-plugins/gradle.properties @@ -0,0 +1 @@ +releaseVersion='1.1' \ No newline at end of file diff --git a/pattern-lens/gradle.properties b/pattern-lens/gradle.properties index ac435c1..c1c2e27 100644 --- a/pattern-lens/gradle.properties +++ b/pattern-lens/gradle.properties @@ -1 +1 @@ -releaseVersion='1.0' \ No newline at end of file +releaseVersion='1.1' \ No newline at end of file diff --git a/pattern-lib/build.gradle b/pattern-lib/build.gradle index 61197c0..ab867ba 100644 --- a/pattern-lib/build.gradle +++ b/pattern-lib/build.gradle @@ -5,7 +5,7 @@ plugins { } group = 'io.github.nifacy.c4patterns' -version = '1.0' +version = releaseVersion repositories { mavenCentral() diff --git a/pattern-lib/gradle.properties b/pattern-lib/gradle.properties index 6b91bb5..51f2e71 100644 --- a/pattern-lib/gradle.properties +++ b/pattern-lib/gradle.properties @@ -2,3 +2,4 @@ # https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties org.gradle.configuration-cache=true +releaseVersion='1.1' \ No newline at end of file diff --git a/pattern-syntax-parser/build.gradle b/pattern-syntax-parser/build.gradle index c2e5045..db5d5cc 100644 --- a/pattern-syntax-parser/build.gradle +++ b/pattern-syntax-parser/build.gradle @@ -5,7 +5,7 @@ plugins { } group = 'io.github.nifacy.c4patterns' -version = '1.0' +version = releaseVersion java { toolchain { diff --git a/pattern-syntax-parser/gradle.properties b/pattern-syntax-parser/gradle.properties index e69de29..c1c2e27 100644 --- a/pattern-syntax-parser/gradle.properties +++ b/pattern-syntax-parser/gradle.properties @@ -0,0 +1 @@ +releaseVersion='1.1' \ No newline at end of file diff --git a/pattern-syntax-plugin/gradle.properties b/pattern-syntax-plugin/gradle.properties index ac435c1..c1c2e27 100644 --- a/pattern-syntax-plugin/gradle.properties +++ b/pattern-syntax-plugin/gradle.properties @@ -1 +1 @@ -releaseVersion='1.0' \ No newline at end of file +releaseVersion='1.1' \ No newline at end of file diff --git a/vs-code-extension/package.json b/vs-code-extension/package.json index 6c50f17..674c7b5 100644 --- a/vs-code-extension/package.json +++ b/vs-code-extension/package.json @@ -2,7 +2,7 @@ "name": "c4-dsl-patterns-extension", "displayName": "C4 DSL Patterns", "description": "VS Code extension for c4 dsl patterns support", - "version": "1.0.0", + "version": "1.1.0", "engines": { "vscode": "^1.96.0" },