Skip to content

Commit 3df25f2

Browse files
committed
Increasing versio to next dev version
1 parent 7b90b12 commit 3df25f2

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ jobs:
4949
DOCKER_TAG=${GIT_TAG#:refs/heads/main}
5050
# ### Modification-Start ###
5151
# temporary tag override
52-
DOCKER_TAG=":2.0.1"
52+
DOCKER_TAG=":2.1.0-alpha1"
5353
# ### Modification-End ###
5454
./gradlew jib -Djib.to.image=docker.io/iteratec/teamdojo${DOCKER_TAG} -Djib.to.auth.username="${{ secrets.DOCKER_USERNAME }}" -Djib.to.auth.password="${{ secrets.DOCKER_PASSWORD }}"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ plugins {
3030

3131
group = "com.iteratec.teamdojo"
3232
// ### MODIFICATION-START ###
33-
version = "2.0.1"
33+
version = "2.1.0-alpha1"
3434
description = "TeamDojo is a tool to skill your Teams"
3535
// ### MODIFICATION-END ###
3636

deployment/K8S/helm/teamdojo/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 2.0.1
18+
version: 2.1.0-alpha1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: 2.0.1
24+
appVersion: 2.1.0-alpha1
2525
kubeVersion: ">=v1.11.0-0"
2626

2727
description: Teamdojo is a application for improving (application and project) skills of your teams through gamification.

deployment/K8S/helm/teamdojo/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TeamDojo
22

3-
![Version: 2.0.1](https://img.shields.io/badge/Version-2.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.1](https://img.shields.io/badge/AppVersion-2.0.1-informational?style=flat-square) [![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/iteratec)](https://artifacthub.io/packages/search?repo=iteratec)
3+
![Version: 2.1.0-alpha1](https://img.shields.io/badge/Version-2.1.0-alpha1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.1.0-alpha1](https://img.shields.io/badge/AppVersion-2.1.0-alpha1-informational?style=flat-square) [![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/iteratec)](https://artifacthub.io/packages/search?repo=iteratec)
44

55
TeamDojo is a application for improving (application and project) skills of your teams through gamification.
66

@@ -37,7 +37,7 @@ Kubernetes: `>=v1.11.0-0`
3737
| fullnameOverride | string | `""` | |
3838
| image.pullPolicy | string | `"IfNotPresent"` | |
3939
| image.repository | string | `"docker.io/iteratec/teamdojo"` | |
40-
| image.tag | string | `"2.0.1"` | |
40+
| image.tag | string | `"2.1.0-alpha1"` | |
4141
| imagePullSecrets | list | `[]` | |
4242
| ingress.annotations | object | `{}` | |
4343
| ingress.enabled | bool | `false` | |

deployment/K8S/helm/teamdojo/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ image:
44
repository: docker.io/iteratec/teamdojo
55
pullPolicy: IfNotPresent
66
# Overrides the image tag whose default is the chart appVersion.
7-
tag: 2.0.1
7+
tag: 2.1.0-alpha1
88

99
imagePullSecrets: []
1010
nameOverride: ""

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "team-dojo",
3-
"version": "2.0.1",
3+
"version": "2.1.0-alpha1",
44
"private": true,
55
"description": "TeamDojo is a tool to skill your Teams",
66
"license": "Apache-2.0",

src/main/resources/banner.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ${AnsiColor.WHITE}████████████████████
77
${AnsiColor.GREEN} |_| \___| \__,_| |_| |_| |_| ${AnsiColor.RED}|____/ \___/ _/ | \___/
88
${AnsiColor.GREEN} ${AnsiColor.RED} |__/
99

10-
${AnsiColor.BLUE}::Release Version: 2.0.1
10+
${AnsiColor.BLUE}::Release Version: 2.1.0-alpha1
1111
${AnsiColor.BLUE} Powered by Spring Boot ${spring-boot.version} and JHipster v7.8.1
1212

1313
${AnsiColor.BLUE}TeamDojo is an open source project provided by iteratec GmbH. Made with ❤️

src/main/resources/config/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jhipster:
204204
title: Team Dojo API
205205
description: Team Dojo API documentation
206206
### MODIFICATION-START ###
207-
version: 2.0.1
207+
version: 2.1.0-alpha1
208208
### MODIFICATION-END ###
209209
terms-of-service-url:
210210
contact-name:

0 commit comments

Comments
 (0)