Skip to content

Commit ff47a36

Browse files
chore(release): 1.2.3 [skip ci]
# [v1.2.3](v1.2.2...v1.2.3) (2025-09-16) ## πŸ› Bug Fixes - [`0a3ec09`](0a3ec09) fix(ci): env variables
1 parent 0a3ec09 commit ff47a36

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
# [v1.2.3](https://github.com/warteamx/lab1-todoApp/compare/v1.2.2...v1.2.3) (2025-09-16)
10+
11+
## πŸ› Bug Fixes
12+
- [`0a3ec09`](https://github.com/warteamx/lab1-todoApp/commit/0a3ec09) fix(ci): env variables
13+
914
# [v1.2.2](https://github.com/warteamx/lab1-todoApp/compare/v1.2.1...v1.2.2) (2025-09-16)
1015

1116
## πŸ› Bug Fixes

β€Žclient/constants/version.tsβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Application version following semantic versioning (SemVer)
88
* Format: MAJOR.MINOR.PATCH
99
*/
10-
export const APP_VERSION = process.env.EXPO_PUBLIC_APP_VERSION || '1.2.2';
10+
export const APP_VERSION = process.env.EXPO_PUBLIC_APP_VERSION || '1.2.3';
1111

1212
/**
1313
* Build number for tracking specific builds
@@ -19,13 +19,13 @@ export const BUILD_NUMBER = process.env.EXPO_PUBLIC_BUILD_NUMBER || '1';
1919
* Build date in ISO format
2020
* Set during the build process
2121
*/
22-
export const BUILD_DATE = process.env.EXPO_PUBLIC_BUILD_DATE || '2025-09-16T13:25:28.417Z';
22+
export const BUILD_DATE = process.env.EXPO_PUBLIC_BUILD_DATE || '2025-09-16T13:46:02.739Z';
2323

2424
/**
2525
* Git commit hash (short)
2626
* Useful for debugging and tracking specific builds
2727
*/
28-
export const COMMIT_HASH = process.env.EXPO_PUBLIC_COMMIT_HASH || 'a09c9fe';
28+
export const COMMIT_HASH = process.env.EXPO_PUBLIC_COMMIT_HASH || '0a3ec09';
2929

3030
/**
3131
* Build environment

β€Žclient/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lab1-todoapp-client",
33
"main": "expo-router/entry",
4-
"version": "1.2.2",
4+
"version": "1.2.3",
55
"description": "React Native client for Todo application built with Expo",
66
"author": "warteamx",
77
"license": "MIT",

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lab1-todoapp",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "Full-stack Todo application with React Native client and Node.js server",
55
"author": "warteamx",
66
"license": "MIT",

β€Žserver/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lab1-todoapp-server",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "Node.js server for Todo application with PostgreSQL and Supabase",
55
"author": "warteamx",
66
"license": "MIT",

0 commit comments

Comments
Β (0)