Releases: Code-Hex/synchro
Releases · Code-Hex/synchro
v0.0.6
v0.0.5
Now, We can get datetime data from string or bytes via DB!!
func run() error {
db, err := sql.Open("pgx", dsn)
if err != nil {
return err
}
defer db.Close()
row := db.QueryRow("select CURRENT_TIMESTAMP::text")
var t synchro.NullTime[tz.AsiaTokyo]
if err := row.Scan(&t); err != nil {
return err
}
log.Println(t)
return nil
}
What's Changed
New Contributors
Full Changelog: v0.0.4...v0.0.5
v0.0.4
What's Changed
- bump actions/setup-go v4 by @shogo82148 in #2
- migrate set-output to environment files. by @shogo82148 in #3
- bump codecov/codecov-action v3 by @shogo82148 in #4
Full Changelog: v0.0.3...v0.0.4
v0.0.3
What's Changed
- remove "Code generated by tzgen" from the tz package comment by @shogo82148 in #1
New Contributors
- @shogo82148 made their first contribution in #1
Full Changelog: v0.0.2...v0.0.3
v0.0.2
Full Changelog: v0.0.1...v0.0.2
v0.0.1
Full Changelog: https://github.com/Code-Hex/synchro/commits/v0.0.1