-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathversion.properties
More file actions
21 lines (20 loc) · 1.33 KB
/
Copy pathversion.properties
File metadata and controls
21 lines (20 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Single source of truth for the app version (calver: YYYY.MM.PATCH).
# Bumped by scripts/bump-version.sh (patch | prepatch | rc | finalize);
# year/month come from the current UTC date automatically.
# versionCode is DERIVED from versionName by AndroidApplicationConventionPlugin as
# YEAR*10000 + MONTH*100 + PATCH: 2026.06.0 -> 20260600. Releases before the
# calver cutover were semver under the same packing (0.1.3 -> 103), so codes
# stayed monotonic.
# This is the app's own version, independent of SUPPORTED_BACKEND_VERSION.
versionName=2026.08.3
# LibreChat backend release this build targets — best-tested experience.
# Read by the app (core/common codegen → BackendVersion.SUPPORTED_BACKEND_VERSION)
# AND by release.yml for the "Target backend" line in release notes.
# Three legal forms (BackendVersion.parse handles all three):
# 0.8.7 — synced to a stable release tag
# 0.8.8-rc1 — synced to a release-candidate tag
# 0.8.7+dev.9f8e7d6c — partial sync to an untagged upstream commit: base version is what
# that commit's package.json reports; suffix pins the synced commit
# (must match UPSTREAM_VERSION's commit=). The `+…` metadata is
# stripped in comparisons, so compat checks key on the base line.
backendTargetVersion=0.8.8-rc1