From 44525ab27e201ff071ccbf25fefe55d1923c892b Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 28 Jun 2023 11:29:37 -0500 Subject: [PATCH] chore(release): 0.2.0 [skip ci] ## [0.2.0](https://github.com/hashgraph/full-stack-testing/compare/v0.1.2...v0.2.0) (2023-06-28) ### Features * add github templates ([#124](https://github.com/hashgraph/full-stack-testing/issues/124)) ([7990742](https://github.com/hashgraph/full-stack-testing/commit/7990742210422702b21f4c2ef70364e1119e5ad7)) * boilerplate helm chart ([#121](https://github.com/hashgraph/full-stack-testing/issues/121)) ([70c66ca](https://github.com/hashgraph/full-stack-testing/commit/70c66ca4c851a5a4961e3b5d19527bc477f8c0ae)) * publish the helm client to maven central ([#123](https://github.com/hashgraph/full-stack-testing/issues/123)) ([6b40d2d](https://github.com/hashgraph/full-stack-testing/commit/6b40d2db1e53934e44d9846bf9d6ca006755fb86)) * relocates the docker image definition and adds a new image definition ([#126](https://github.com/hashgraph/full-stack-testing/issues/126)) ([db59e7c](https://github.com/hashgraph/full-stack-testing/commit/db59e7c390d4875ef4be823d278d976c6e1f618e)) --- .releaserc | 15 +++++++++++++++ gradle.properties | 48 ++++++++--------------------------------------- 2 files changed, 23 insertions(+), 40 deletions(-) create mode 100644 .releaserc diff --git a/.releaserc b/.releaserc new file mode 100644 index 000000000..aa30a2af6 --- /dev/null +++ b/.releaserc @@ -0,0 +1,15 @@ +{ + "plugins": [ + "@semantic-release/commit-analyzer", + [ + "@semantic-release/release-notes-generator", + { + "preset": "conventionalcommits" + } + ], + "gradle-semantic-release-plugin" + ], + "branches": [ + "main" + ] +} diff --git a/gradle.properties b/gradle.properties index a1546669e..1c8f867ed 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,40 +1,8 @@ -# -# Copyright (C) 2023 Hedera Hashgraph, LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -description=The Full Stack Testing (FST) Suite provides a framework and an associated set of tools for conducting \ -end-to-end and full stack tests against the Hedera network software. Designed with ease of use in mind, the tools are \ -purpose built for the Hedera community and open-source contributors. - -# Version for all subprojects -version=0.1.0-SNAPSHOT - -# Set the default Group ID -group=com.hedera.fullstack - -# Need increased heap for running Gradle itself, or SonarQube will run the JVM out of metaspace -org.gradle.jvmargs=-Xmx3072m - -# Enable Gradle caching -org.gradle.caching=true - -# Enable parallel builds -org.gradle.parallel=true - -# Disable publish signing by default -publishSigningEnabled=false - -# Initialize and default to true -mavenPublishingEnabled=true +description = The Full Stack Testing (FST) Suite provides a framework and an associated set of tools for conducting end-to-end and full stack tests against the Hedera network software. Designed with ease of use in mind, the tools are purpose built for the Hedera community and open-source contributors. +version = 0.2.0 +group = com.hedera.fullstack +org.gradle.jvmargs = -Xmx3072m +org.gradle.caching = true +org.gradle.parallel = true +publishSigningEnabled = false +mavenPublishingEnabled = true