20 lines
639 B
C
20 lines
639 B
C
/*
|
|
* version.h — single source of truth for the build version.
|
|
*
|
|
* These defines are updated automatically by increment_and_push.sh
|
|
* (mirroring nostr_core_lib's nostr_core.h convention). Do not edit
|
|
* by hand unless setting an explicit release version.
|
|
*
|
|
* Note: we use SB_VERSION (sovereign browser version) to avoid clashing
|
|
* with VERSION defined in nostr_core_lib's nostr_core.h.
|
|
*/
|
|
#ifndef SOVEREIGN_BROWSER_VERSION_H
|
|
#define SOVEREIGN_BROWSER_VERSION_H
|
|
|
|
#define SB_VERSION "v0.0.54"
|
|
#define SB_VERSION_MAJOR 0
|
|
#define SB_VERSION_MINOR 0
|
|
#define SB_VERSION_PATCH 54
|
|
|
|
#endif /* SOVEREIGN_BROWSER_VERSION_H */
|