1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-11-30 21:32:30 +00:00

feat(ui): add footer with links to docs and discussions

هذا الالتزام موجود في:
Adam Cooke
2021-07-30 19:41:07 +00:00
الأصل 9bcb5993fa
التزام 1247dae2e0
6 ملفات معدلة مع 56 إضافات و8 حذوفات

عرض الملف

@@ -1,11 +1,12 @@
module Postal
VERSION = '1.0.0'
REVISION = nil
CHANNEL = 'dev'
VERSION_PATH = File.expand_path('../../VERSION', __dir__)
VERSION = if File.file?(VERSION_PATH)
File.read(VERSION_PATH).strip.delete_prefix('v')
else
'0.0.0-dev'
end
def self.version
[VERSION, REVISION, CHANNEL].compact.join('-')
VERSION
end
end