synchro

πŸ•°οΈ Synchro: Timezone-typesafe date and time framework for Go. 🌟 Star to support our work!

MIT License

Stars
254

Bot releases are hidden (Show)

synchro - v0.5.2 Latest Release

Published by Code-Hex 10 months ago

What's Changed

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.5.1...v0.5.2

synchro - v0.5.1

Published by Code-Hex 10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.5.0...v0.5.1

synchro - v0.5.0

Published by Code-Hex 11 months ago

What's Changed

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.4.0...v0.5.0

synchro - v0.4.0

Published by Code-Hex 11 months ago

What's Changed

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.3.0...v0.4.0

synchro - v0.3.0

Published by Code-Hex about 1 year ago

What's Changed

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.2.0...v0.3.0

synchro - v0.2.0

Published by Code-Hex about 1 year ago

What's Changed

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.1.0...v0.2.0

synchro - v0.1.0

Published by Code-Hex about 1 year ago

What's Changed

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.0.9...v0.1.0

synchro - v0.0.9

Published by Code-Hex about 1 year ago

What's Changed

Since this library is still in the development stage, we will make breaking changes without updating the major version.

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.0.8...v0.0.9

synchro - v0.0.8

Published by Code-Hex about 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.0.7...v0.0.8

synchro - v0.0.7

Published by Code-Hex about 1 year ago

What's Changed

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.0.6...v0.0.7

synchro - v0.0.6

Published by Code-Hex about 1 year ago

What's Changed

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.0.5...v0.0.6

synchro - v0.0.5

Published by Code-Hex about 1 year ago

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: https://github.com/Code-Hex/synchro/compare/v0.0.4...v0.0.5

synchro - v0.0.4

Published by Code-Hex about 1 year ago

What's Changed

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.0.3...v0.0.4

synchro - v0.0.3

Published by Code-Hex about 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/Code-Hex/synchro/compare/v0.0.2...v0.0.3

synchro - v0.0.2

Published by Code-Hex about 1 year ago

synchro - v0.0.1

Published by Code-Hex about 1 year ago