diff --git a/build-info/src/main/resource-templates/bungee.yml b/build-info/src/main/resource-templates/bungee.yml index d6b34ed1..213b3e3f 100644 --- a/build-info/src/main/resource-templates/bungee.yml +++ b/build-info/src/main/resource-templates/bungee.yml @@ -1,5 +1,5 @@ name: 'SimpleCoreAPI' main: 'cl.franciscosolis.simplecoreapi.bungee.BungeeLoader' version: '{{ version }}' -author: 'FranciscoSolis' +authors: ['GitHub/Im-Fran'] description: '{{ description }}' \ No newline at end of file diff --git a/build-info/src/main/resource-templates/plugin.yml b/build-info/src/main/resource-templates/plugin.yml index 8c5cd0ff..ea5ee7ed 100644 --- a/build-info/src/main/resource-templates/plugin.yml +++ b/build-info/src/main/resource-templates/plugin.yml @@ -2,6 +2,6 @@ name: 'SimpleCoreAPI' main: 'cl.franciscosolis.simplecoreapi.spigot.SpigotLoader' version: '{{ version }}' api-version: '1.21' -authors: ['FranciscoSolis'] +authors: ['GitHub/Im-Fran'] website: https://franciscosolis.cl description: '{{ description }}' \ No newline at end of file diff --git a/build-info/src/main/resource-templates/velocity-plugin.json b/build-info/src/main/resource-templates/velocity-plugin.json index 49b52f85..e791eba0 100644 --- a/build-info/src/main/resource-templates/velocity-plugin.json +++ b/build-info/src/main/resource-templates/velocity-plugin.json @@ -3,6 +3,6 @@ "name": "SimpleCoreAPI", "version": "{{ version }}", "url": "https://franciscosolis.cl", - "authors": ["FranciscoSolis"], + "authors": ["GitHub/Im-Fran"], "main": "cl.franciscosolis.simplecoreapi.velocity.VelocityLoader" } \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 07c9aa85..f2ccec1e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,7 +29,7 @@ val projectBuildId = env["GIT_COMMIT_SHORT_HASH"] ?: UUID.randomUUID().toString( * otherwise it will be added '$projectBuildId' * (no snapshot because maven central does not support it) */ -val projectVersion = "${env["VERSION"] ?: "1.0.0"}${if (env["ENV"] != "prod") "-$projectBuildId" else ""}" +val projectVersion = "${env["VERSION"] ?: "1.0.1"}${if (env["ENV"] != "prod") "-$projectBuildId" else ""}" /* Print out the current version */ println("This build version was '$projectVersion'")