Add module versioning, drop deferred tasks — ingest v1.0, history v1.0, api v1.0

Implement release note discipline per bible module-versioning contract:
- Add version.go with Version = "1.0" to ingest, history, api packages
- Drop CI task (no CI infrastructure planned)
- Drop Release note discipline task (now implemented)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Mikhail Chusavitin
2026-03-15 14:47:41 +03:00
parent 61a4a5b31b
commit 824e377a17
4 changed files with 10 additions and 2 deletions

3
internal/api/version.go Normal file
View File

@@ -0,0 +1,3 @@
package api
const Version = "1.0"

View File

@@ -0,0 +1,3 @@
package history
const Version = "1.0"

View File

@@ -0,0 +1,3 @@
package ingest
const Version = "1.0"