-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Specifically, reserve patch releases for releases without release notes such as translation updates, to be able to ship meaningful release notes to users while updating translations at any point in time. Adapt the about dialog to show the cargo version number, but use only its major and minor parts for the release notes version number.
- Loading branch information
Showing
6 changed files
with
42 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,17 @@ homepage = "https://github.com/swsnr/turnon" | |
repository = "https://github.com/swsnr/turnon" | ||
license = "MPL-2.0" | ||
authors = ["Sebastian Wiesner <[email protected]>"] | ||
# Our version number. Since semver doesn't make much sense for UI applications | ||
# which have no API we repurpose the version numer as follows: | ||
# | ||
# - major: Major new features or major changes to the UI, which may break the app for some users. | ||
# - minor: User-visible features or bugfixes. | ||
# - patch: Translation updates. | ||
# | ||
# Major and minor releases get release notes, but patch releases do not; this | ||
# enables us to ship updates to translations whenever translators contributed | ||
# new languages or made major updates, while still providing meaningful release | ||
# notes for the last functional changes. | ||
version = "2.1.0" | ||
edition = "2021" | ||
publish = false | ||
|
@@ -22,6 +33,7 @@ serde = { version = "1.0.210", features = ["derive"] } | |
serde_json = "1.0.128" | ||
socket2 = "0.5.7" | ||
bitflags = "2.6.0" | ||
semver = "1.0.24" | ||
|
||
[build-dependencies] | ||
glob = "0.3.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters