parent
638e228ba4
commit
5f7376ebb1
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased](https://git.rustybever.be/Chewing_Bever/alex/src/branch/dev)
|
## [Unreleased](https://git.rustybever.be/Chewing_Bever/alex/src/branch/dev)
|
||||||
|
|
||||||
|
## [0.4.2](https://git.rustybever.be/Chewing_Bever/alex/src/tag/0.4.2)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
* Fix bug where JSON metadata file can be corrupted if crash occurs while
|
* Fix bug where JSON metadata file can be corrupted if crash occurs while
|
||||||
|
@ -79,7 +81,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
* JVM flags now narrowely follow Aikar's specifications
|
* JVM flags now narrowly follow Aikar's specifications
|
||||||
|
|
||||||
## [0.2.0](https://git.rustybever.be/Chewing_Bever/alex/src/tag/0.2.0)
|
## [0.2.0](https://git.rustybever.be/Chewing_Bever/alex/src/tag/0.2.0)
|
||||||
|
|
||||||
|
@ -89,7 +91,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
* A single stop signal will trigger the Java process to shut down, but Alex
|
* A single stop signal will trigger the Java process to shut down, but Alex
|
||||||
still expects to be run from a utility such as dumb-init
|
still expects to be run from a utility such as dumb-init
|
||||||
* Properly back up entire config directory
|
* Properly back up entire config directory
|
||||||
* Inject Java optimisation flags
|
* Inject Java optimization flags
|
||||||
|
|
||||||
## [0.1.1](https://git.rustybever.be/Chewing_Bever/alex/src/tag/0.1.1)
|
## [0.1.1](https://git.rustybever.be/Chewing_Bever/alex/src/tag/0.1.1)
|
||||||
|
|
||||||
|
|
10
Cargo.toml
10
Cargo.toml
|
@ -14,8 +14,8 @@ edition = "2021"
|
||||||
chrono = { version = "0.4.26", features = ["serde"] }
|
chrono = { version = "0.4.26", features = ["serde"] }
|
||||||
serde = { version = "1.0.164", features = ["derive"] }
|
serde = { version = "1.0.164", features = ["derive"] }
|
||||||
|
|
||||||
# [profile.release]
|
[profile.release]
|
||||||
# lto = "fat"
|
lto = "fat"
|
||||||
# codegen-units = 1
|
codegen-units = 1
|
||||||
# panic = "abort"
|
panic = "abort"
|
||||||
# strip = true
|
strip = true
|
||||||
|
|
Loading…
Reference in New Issue