Skip to content

Commit 25b1105

Browse files
committed
prepare next dev cycle for v0.3.0
1 parent d35aee7 commit 25b1105

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v0.2.0
9+
# Version: v0.3.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<!-- for main -->
2-
<!--
2+
33
[![Download](https://img.shields.io/badge/Download-v0.2.0-%23007ec6)](https://github.com/tegonal/scala-commons/releases/tag/v0.2.0)
44
[![Apache 2.0](https://img.shields.io/badge/%E2%9A%96-Apache%202.0-%230b45a6)](http://opensource.org/licenses/Apache2.0 "License")
55
[![Quality Assurance](https://github.com/tegonal/scala-commons/actions/workflows/quality-assurance.yml/badge.svg?event=push&branch=main)](https://github.com/tegonal/scala-commons/actions/workflows/quality-assurance.yml?query=branch%3Amain)
66
[![Newcomers Welcome](https://img.shields.io/badge/%F0%9F%91%8B-Newcomers%20Welcome-blueviolet)](https://github.com/tegonal/scala-commons/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 "Ask in discussions for help")
7-
-->
7+
88
<!-- for main end -->
99
<!-- for release -->
10-
10+
<!--
1111
[![Download](https://img.shields.io/badge/Download-v0.2.0-%23007ec6)](https://github.com/tegonal/scala-commons/releases/tag/v0.2.0)
1212
[![EUPL 1.2](https://img.shields.io/badge/%E2%9A%96-EUPL%2201.2-%230b45a6)](https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12 "License")
1313
[![Newcomers Welcome](https://img.shields.io/badge/%F0%9F%91%8B-Newcomers%20Welcome-blueviolet)](https://github.com/tegonal/scala-commons/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 "Ask in discussions for help")
14-
14+
-->
1515
<!-- for release end -->
1616

1717
# scala-commons
@@ -26,13 +26,13 @@ It contains functions such as:
2626

2727
and many more, making our code more readable.
2828

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

35-
--->
35+
---
3636

3737
**Table of Content**
3838

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sbt.url
1010

1111
name := "scala-commons"
12-
ThisBuild / version := "0.2.0"
12+
ThisBuild / version := "0.3.0-SNAPSHOT"
1313
ThisBuild / organization := "com.tegonal"
1414
ThisBuild / description := "A library containing utility and helper functions for scala"
1515

scripts/before-pr.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v0.2.0
9+
# Version: v0.3.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v0.2.0
9+
# Version: v0.3.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit

scripts/prepare-next-dev-cycle.sh

+2-2
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: v0.2.0
9+
# Version: v0.3.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit
1313
unset CDPATH
14-
SCALA_COMMONS_VERSION="v0.2.0"
14+
SCALA_COMMONS_VERSION="v0.3.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

+2-2
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: v0.2.0
9+
# Version: v0.3.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit
1313
unset CDPATH
14-
SCALA_COMMONS_VERSION="v0.2.0"
14+
SCALA_COMMONS_VERSION="v0.3.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v0.2.0
9+
# Version: v0.3.0-SNAPSHOT
1010
###################################
1111
set -euo pipefail
1212
shopt -s inherit_errexit

0 commit comments

Comments
 (0)