go-carbon 2.1.8 版本釋出, 輕量級、語義化、對開發者友好的Golang時間處理庫

普羅米修斯發表於2022-05-24

carbon 是一個輕量級、語義化、對開發者友好的 golang 時間處理庫,支援鏈式呼叫。

目前已被 awesome-go 收錄,如果您覺得不錯,請給個 star 吧

github.com/golang-module/carbon

gitee.com/golang-module/carbon

安裝使用

Golang 版本大於等於1.16
// 使用 github 庫
go get -u github.com/golang-module/carbon/v2

import (
     "github.com/golang-module/carbon/v2"
 )

// 使用 gitee 庫
go get -u gitee.com/golang-module/carbon/v2

import (
     "gitee.com/golang-module/carbon/v2")
Golang 版本小於1.16
// 使用 github 庫
go get -u github.com/golang-module/carbon

import (
     "github.com/golang-module/carbon"
 )

// 使用 gitee 庫
go get -u gitee.com/golang-module/carbon

import (
     "gitee.com/golang-module/carbon"
 )
更新日誌
  • 修復 ToFormatString () 方法對於支援 i18n 的特殊字元 (D, F, M, l) 不能輸出本地化翻譯的 bug
  • 修復 lang/jp.json 語法錯誤
  • 修復 lang/ro.json 語法錯誤
  • 統一私有方法註釋格式
  • 最佳化 IsSameXXX() 判斷邏輯
  • 最佳化單元測試
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章