mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-29 01:14:35 +02:00
13 lines
252 B
Bash
13 lines
252 B
Bash
|
|
# This script is sourced to define the main version parameters
|
|
|
|
# The main version
|
|
KLAYOUT_VERSION="0.25"
|
|
|
|
# The build date
|
|
KLAYOUT_VERSION_DATE=$(date --iso-8601)
|
|
|
|
# The short SHA hash of the commit
|
|
KLAYOUT_VERSION_REV=$(git rev-parse --short HEAD)
|
|
|