diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-20 21:06:35 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-20 21:06:35 +0200 |
| commit | 59e86c9fd39308bc6b632e02ecf4d37265dabc91 (patch) | |
| tree | 20e865fa680df4cff10056fa238ad07d7c58f458 /internal/version | |
| parent | 0441f47fd585812b9c1f98b8a3dbeee03aa70b03 (diff) | |
Add Go implementation (goprecords)v0.1.0
- cmd/goprecords: CLI with import, query, report-from-files, test
- internal/goprecords: types, order, aggregate, db, report
- internal/version: version constant (0.1.0)
- SQLite import (repeatable: clears record table then inserts)
- Magefile: Build, Test, Install, Uninstall
- Table-driven unit tests; comparison script vs Raku guprecords
- .gitignore: *.db, /goprecords binary
Co-authored-by: Cursor <cursoragent@cursor.com>
Diffstat (limited to 'internal/version')
| -rw-r--r-- | internal/version/version.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/version/version.go b/internal/version/version.go new file mode 100644 index 0000000..3178b50 --- /dev/null +++ b/internal/version/version.go @@ -0,0 +1,4 @@ +package version + +// Version is the application version. +const Version = "0.1.0" |
