Commit a8433ef
committed
chore: Centralize and update application version
This commit updates the application version from 1.0.0 to 1.1.0 and centralizes version management by reading the version number from a new `version.properties` file at the root of the project.
### Key Changes:
* **`version.properties`:**
* A new `version.properties` file has been created to store the application version (`PACKAGE_VERSION=1.1.0`).
* **`composeApp/build.gradle.kts`:**
* The Gradle script now reads the `packageVersion` from `version.properties`, ensuring a single source of truth for the version number.
* A check is included to throw a `GradleException` if the `version.properties` file is not found.
* **`AppLinks.kt`:**
* The hardcoded `VERSION` constant has been updated to `1.1.0` to match the new version.1 parent a4236fa commit a8433ef
File tree
3 files changed
+14
-3
lines changed- composeApp
- src/jvmMain/kotlin/com/meet/dev/analyzer/core/utility
3 files changed
+14
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
2 | 3 | | |
3 | 4 | | |
4 | 5 | | |
| |||
99 | 100 | | |
100 | 101 | | |
101 | 102 | | |
102 | | - | |
| 103 | + | |
103 | 104 | | |
104 | 105 | | |
105 | 106 | | |
| |||
132 | 133 | | |
133 | 134 | | |
134 | 135 | | |
135 | | - | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
0 commit comments