From 48d736c0fc1f2dda4169a3e2e1267f1980865d82 Mon Sep 17 00:00:00 2001 From: Oleg Jukovec Date: Wed, 17 Aug 2022 13:45:19 +0300 Subject: [PATCH] Release 1.8.0 Overview The minor release with time zones and interval support for datetime. Also now you can use go-tarantool with `msgpack.v5`. To do this, add `go_tarantool_msgpack_v5` to your build tags: $ go build -tags=go_tarantool_msgpack_v5 . Breaking changes There are no breaking changes in the release. New features Optional msgpack.v5 usage (#124). TZ support for datetime (#163). Interval support for datetime (#165). Bugfixes Markdown of documentation for the decimal subpackage (#201). --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6185dc883..1177e4a8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ Versioning](http://semver.org/spec/v2.0.0.html) except to the first release. ### Added +### Changed + +### Fixed + +## [1.8.0] - 2022-08-17 + +### Added + - Optional msgpack.v5 usage (#124) - TZ support for datetime (#163) - Interval support for datetime (#165)