Skip to content

Commit 62239ce

Browse files
prepare next dev cycle for v1.5.0
1 parent 7a84f83 commit 62239ce

9 files changed

Lines changed: 16 additions & 16 deletions

File tree

.gt/remotes/tegonal-gh-commons/pull-hook.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under GNU Affero General Public License v3
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v1.4.0
9+
# Version: v1.5.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<!-- for main -->
2-
<!--
2+
33
[![Download](https://img.shields.io/badge/Download-v1.4.0-%23007ec6)](https://github.com/tegonal/cohiva/releases/tag/v1.4.0)
44
[![AGPL 3](https://img.shields.io/badge/%E2%9A%96-AGPL%203-%230b45a6)](https://www.gnu.org/licenses/agpl-3.0.en.html "License")
55
[![Quality Assurance](https://github.com/tegonal/cohiva/actions/workflows/quality-assurance.yml/badge.svg?event=push&branch=develop)](https://github.com/tegonal/cohiva/actions/workflows/quality-assurance.yml?query=branch%3Adevelop)
66
[![Coverage](https://raw.githubusercontent.com/tegonal/cohiva/python-coverage-comment-action-data/badge.svg)](https://htmlpreview.github.io/?https://github.com/tegonal/cohiva/blob/python-coverage-comment-action-data/htmlcov/index.html)
77
[![Newcomers Welcome](https://img.shields.io/badge/%F0%9F%91%8B-Newcomers%20Welcome-blueviolet)](https://github.com/tegonal/cohiva/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 "Ask in discussions for help")
8-
-->
8+
99
<!-- for main end -->
1010
<!-- for release -->
11-
11+
<!--
1212
[![Download](https://img.shields.io/badge/Download-v1.4.0-%23007ec6)](https://github.com/tegonal/cohiva/releases/tag/v1.4.0)
1313
[![AGPL 3](https://img.shields.io/badge/%E2%9A%96-AGPL%203-%230b45a6)](https://www.gnu.org/licenses/agpl-3.0.en.html "License")
1414
[![Newcomers Welcome](https://img.shields.io/badge/%F0%9F%91%8B-Newcomers%20Welcome-blueviolet)](https://github.com/tegonal/cohiva/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 "Ask in discussions for help")
15-
15+
-->
1616
<!-- for release end -->
1717

1818
# Cohiva
@@ -25,13 +25,13 @@ The core of Cohiva is built on the Python web framework <a href="https://www.dja
2525

2626
For more information see https://www.cohiva.ch (in German).
2727

28-
<!---
28+
---
2929
❗ You are taking a *sneak peek* at the next version. It could be that some features you find on this page are not
3030
released yet.
3131
Please have a look at the README of the corresponding release/git tag. Latest
3232
version: [README of v1.4.0](https://github.com/tegonal/cohiva/tree/v1.4.0/README.md).
3333

34-
--->
34+
---
3535

3636
**Table of Contents**
3737

django/cohiva/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = "1.4.0"
3+
__version__ = "1.5.0-SNAPSHOT"
44

55
git_tag = os.getenv("COHIVA_GIT_TAG", None)
66
git_commit = os.getenv("COHIVA_GIT_COMMIT", None)

pwa/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "musterweg-app",
3-
"version": "1.4.0",
3+
"version": "1.5.0-SNAPSHOT",
44
"description": "App der Genossenschaft Musterweg",
55
"productName": "Musterweg App",
66
"author": "Marco Steinacher <marco.steinacher@tegonal.com>",

scripts/before-pr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under GNU Affero General Public License v3
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v1.4.0
9+
# Version: v1.5.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit

scripts/cleanup-on-push-to-main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under GNU Affero General Public License v3
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v1.4.0
9+
# Version: v1.5.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit

scripts/prepare-next-dev-cycle.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v1.4.0
9+
# Version: v1.5.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit
1313
unset CDPATH
14-
COHIVA_VERSION="v1.4.0"
14+
COHIVA_VERSION="v1.5.0-SNAPSHOT"
1515

1616
if ! [[ -v scriptsDir ]]; then
1717
scriptsDir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]:-$0}")" >/dev/null && pwd 2>/dev/null)"

scripts/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under European Union Public License v. 1.2
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v1.4.0
9+
# Version: v1.5.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit
1313
unset CDPATH
14-
COHIVA_VERSION="v1.4.0"
14+
COHIVA_VERSION="v1.5.0-SNAPSHOT"
1515

1616
if ! [[ -v scriptsDir ]]; then
1717
scriptsDir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]:-$0}")" >/dev/null && pwd 2>/dev/null)"

scripts/run-shellcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under GNU Affero General Public License v3
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v1.4.0
9+
# Version: v1.5.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit

0 commit comments

Comments
 (0)