Skip to content

Commit

Permalink
Bump version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lberrymage committed Mar 19, 2024
1 parent b8ae6cf commit 4cb7752
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion console/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
}

group = "app.accrescent"
version = "0.4.0"
version = "0.4.1"

application {
mainClass.set("app.accrescent.parcelo.console.ApplicationKt")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fun main(args: Array<String>) = EngineMain.main(args)

@OptIn(ExperimentalSerializationApi::class)
fun Application.module() {
log.info("Starting Parcelo console 0.4.0")
log.info("Starting Parcelo console 0.4.1")

val config = if (environment.developmentMode) {
val fileStorageDir = System.getenv("FILE_STORAGE_BASE_DIR")
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "0.4.0",
"version": "0.4.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/login-screen/login-screen.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ <h2>Log in to Accrescent</h2>
</div>
</div>
<footer>
Parcelo v0.4.0
Parcelo v0.4.1
</footer>
2 changes: 1 addition & 1 deletion repository/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
}

group = "app.accrescent"
version = "0.4.0"
version = "0.4.1"

application {
mainClass.set("app.accrescent.parcelo.repository.ApplicationKt")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fun main(args: Array<String>) {
}

fun Application.module() {
log.info("Starting Parcelo repository 0.4.0")
log.info("Starting Parcelo repository 0.4.1")

val config = if (environment.developmentMode) {
val publishDirectory = System.getenv("REPOSITORY_PUBLISH_DIR")
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
#
# SPDX-License-Identifier: AGPL-3.0-only

sonar.projectVersion=0.4.0
sonar.projectVersion=0.4.1

0 comments on commit 4cb7752

Please sign in to comment.