From f6d93fedd15c4fec957ed901b091878e21e0aecc Mon Sep 17 00:00:00 2001 From: Sven Van Caekenberghe Date: Fri, 22 Sep 2023 11:50:00 +0200 Subject: [PATCH] Add ZTimestamp-GT package and gt group --- .../BaselineOfZTimestamp/BaselineOfZTimestamp.class.st | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/repository/BaselineOfZTimestamp/BaselineOfZTimestamp.class.st b/repository/BaselineOfZTimestamp/BaselineOfZTimestamp.class.st index d3a02e5..102d7d4 100644 --- a/repository/BaselineOfZTimestamp/BaselineOfZTimestamp.class.st +++ b/repository/BaselineOfZTimestamp/BaselineOfZTimestamp.class.st @@ -3,7 +3,7 @@ I am BaselineOfZTimestamp, a Metacello baseline to load ZTimestamp. ZTimestamp, a Magnitude, represents a point in time, a combination of a date and a time. It is an alternative for DateAndTime and TimeStamp. -It has second precision and lives in the UTC/GMT/Zulu timezone. +It has nanosecond precision and lives in the UTC/GMT/Zulu timezone. It uses ISO/International conventions and protocols only. ZTimestamp is more efficient: it uses half the memory of DateAndTime and is faster. @@ -29,7 +29,9 @@ BaselineOfZTimestamp >> baseline: spec [ spec package: 'ZTimestamp-Core'; package: 'ZTimestamp-Tests' with: [ spec requires: #('ZTimestamp-Core') ]; + package: 'ZTimestamp-GT' with: [ spec requires: #('ZTimestamp-Core') ]; group: 'default' with: #('core' 'tests'); group: 'core' with: #('ZTimestamp-Core'); - group: 'tests' with: #('ZTimestamp-Tests') ] + group: 'tests' with: #('ZTimestamp-Tests'); + group: 'gt' with: #('ZTimestamp-GT') ] ]