Merge branch 'fix/change-gradle-versioning' into 'master'

Changed gradle versioning to using `git describe`

See merge request mangadex/mangadex_at_home!17
This commit is contained in:
Flint 2020-06-12 11:39:00 +00:00
commit 4109ccd0b1
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
- [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

View file

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