1
0
Fork 1
mirror of https://gitlab.com/mangadex-pub/mangadex_at_home.git synced 2024-01-19 02:48:37 +00:00

Changed gradle versioning to using git describe

This commit is contained in:
Amos Ng 2020-06-12 19:04:56 +08:00
parent d7c6d7b0a3
commit acc43bae91
No known key found for this signature in database
GPG key ID: 89086414F634D123
2 changed files with 3 additions and 2 deletions

View file

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- [2020-06-12] Raised ApacheClient socket limit to `2**18` by [@lflare]. - [2020-06-12] Raised ApacheClient socket limit to `2**18` by [@lflare].
- [2020-06-12] Changed gradle versioning to using `git describe` by [@lflare].
### Deprecated ### Deprecated

View file

@ -7,7 +7,7 @@ plugins {
} }
group = "com.mangadex" group = "com.mangadex"
version = "1.0.0-rc12" version = "git describe --tags".execute().text.trim()
mainClassName = "mdnet.base.MangaDexClient" mainClassName = "mdnet.base.MangaDexClient"
repositories { repositories {
@ -49,4 +49,4 @@ spotless {
run { run {
args = ["dev/settings.json"] args = ["dev/settings.json"]
} }