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:
commit
4109ccd0b1
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue