From bbee5fc441b8fc746507b0a879185f78d7c881ea Mon Sep 17 00:00:00 2001 From: Zach Ryan Date: Sat, 15 Jul 2023 20:13:41 +1000 Subject: [PATCH 1/2] Update README with development status --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 7081f1f..c1e63bd 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,11 @@ nanomath --format ns '2004-11-23T12:30:00Z + 4Y - 10D - (12h + 30m)' # 122644800 nanomath --format m '2008-11-12T00:00:00Z - 2004-11-23T12:30:00Z' # 2087250m ``` +- Supports `ns` (nanoseconds), `us` (microseconds), `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours), `D` (days), `W` (weeks), `M` (months) and `Y` (years) suffixes. +- Timezone designators (according to the following [TZ identifiers](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)) are supported, albeit with minimal testing. + +:wrench: *nanomath* is currently under active development. + ## Build ```bash git clone https://github.com/zdryan/nanomath From 57a73a2f59edc164922ef4a0f14f03b5c9534129 Mon Sep 17 00:00:00 2001 From: Zach Ryan Date: Sat, 15 Jul 2023 20:17:18 +1000 Subject: [PATCH 2/2] Clean --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1e63bd..5191093 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ nanomath --format ns '2004-11-23T12:30:00Z + 4Y - 10D - (12h + 30m)' # 122644800 nanomath --format m '2008-11-12T00:00:00Z - 2004-11-23T12:30:00Z' # 2087250m ``` -- Supports `ns` (nanoseconds), `us` (microseconds), `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours), `D` (days), `W` (weeks), `M` (months) and `Y` (years) suffixes. +- Supports `ns`, `us`, `ms`, `s`, `m`, `h`, `D`, `W`, `M` and `Y` suffixes. - Timezone designators (according to the following [TZ identifiers](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)) are supported, albeit with minimal testing. :wrench: *nanomath* is currently under active development.