Skip to content

Commit 31c2b71

Browse files
committed
release: prepare GoMyAdmin v1.0.0
Updates the CLI version output, generated backend module dependency, and changelog release notes for the first stable v1.0.0 baseline.
1 parent 8a2b6a5 commit 31c2b71

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
77

88
## [Unreleased]
99

10+
## [1.0.0] — 2026-06-11
11+
1012
### Added
1113

14+
- Stable 1.0 release baseline for the CLI, generator, auth, server, adapters, migration runner, generated backend, generated frontend, and public admin APIs.
1215
- Expanded pure unit coverage for admin builders, OAuth state/provider helpers, API key helpers, audit memory filtering, and Mongo adapter query helpers.
1316
- Expanded unit coverage for server metadata/middleware helpers and auth password/session edge cases.
1417

1518
### Changed
1619

20+
- `gomyadmin version` now reports `1.0.0`.
21+
- Generated backend modules now require `github.com/darwvin-dev/gomyadmin v1.0.0`.
1722
- Raised the scoped Go coverage gate from 55% to 60%.
1823
- Raised the scoped Go coverage gate from 60% to 62%.
1924

@@ -203,6 +208,7 @@ Initial public release.
203208

204209
---
205210

211+
[1.0.0]: https://github.com/darwvin-dev/gomyadmin/releases/tag/v1.0.0
206212
[0.6.0]: https://github.com/darwvin-dev/gomyadmin/releases/tag/v0.6.0
207213
[0.5.0]: https://github.com/darwvin-dev/gomyadmin/releases/tag/v0.5.0
208214
[0.4.0]: https://github.com/darwvin-dev/gomyadmin/releases/tag/v0.4.0

internal/cli/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func columnToField(col introspect.Column, isPK bool) generator.GeneratedField {
134134
return gf
135135
}
136136

137-
const Version = "0.6.0"
137+
const Version = "1.0.0"
138138

139139
func Run(args []string) int {
140140
if len(args) == 0 {

internal/generator/generator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ const backendGoModTemplate = `module {{.Module}}/backend
408408
409409
go 1.25.0
410410
411-
require github.com/darwvin-dev/gomyadmin v0.6.0
411+
require github.com/darwvin-dev/gomyadmin v1.0.0
412412
`
413413

414414
const backendMainTemplate = `package main

0 commit comments

Comments
 (0)