Skip to content

Commit

Permalink
removal(changelog): removed changelog in favor of github releases (#50)
Browse files Browse the repository at this point in the history
* removal(changelog): removed changelog in favor of github releases

* patch(module-properties): fixed module properties to work with new format.

* patch(version): bump version
  • Loading branch information
Im-Fran authored Sep 19, 2023
1 parent 0e7c2d6 commit ba7fb9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 42 deletions.
39 changes: 0 additions & 39 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ val env = project.rootProject.file(".env").let { file ->
if(file.exists()) file.readLines().filter { it.isNotBlank() && !it.startsWith("#") && it.split("=").size == 2 }.associate { it.split("=")[0] to it.split("=")[1] } else emptyMap()
}.toMutableMap().apply { putAll(System.getenv()) }

val projectVersion = env["VERSION"] ?: "0.2.0-SNAPSHOT"
val projectVersion = env["VERSION"] ?: "0.3.0-SNAPSHOT"

group = "xyz.theprogramsrc"
version = projectVersion
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/module.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name=TranslationsModule
description=@description@
version=@version@
author=TheProgramSrc
module-id=translationsmodule
dependencies=filesmodule
module-id=TheProgramSrc/SimpleCore-TranslationsModule
dependencies=TheProgramSrc/SimpleCore-FilesModule

0 comments on commit ba7fb9d

Please sign in to comment.