From 416088c29f412da911b0e3ddcd21f7506de4fe94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Tue, 6 May 2025 07:30:36 +0200 Subject: [PATCH] Version v1.13.0 --- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98eb0b751..d2bdb5311 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### Tag v1.13.0 (2025-05-06) + +* Fix canal.GetMasterPos() for mariadb. [#1030](https://github.com/go-mysql-org/go-mysql/pull/1030) ([alarbada](https://github.com/alarbada)) +* Remove semver. [#1028](https://github.com/go-mysql-org/go-mysql/pull/1028) ([serprex](https://github.com/serprex)) +* CI: Test on 32-bit arm. [#1000](https://github.com/go-mysql-org/go-mysql/pull/1000) ([dveeden](https://github.com/dveeden)) +* Golangci-lint 2. [#1024](https://github.com/go-mysql-org/go-mysql/pull/1024) ([serprex](https://github.com/serprex)) +* Server: Fix formatting of credential provider note. [#1023](https://github.com/go-mysql-org/go-mysql/pull/1023) ([dveeden](https://github.com/dveeden)) + ### Tag v1.12.0 (2025-04-01) > **Note:** diff --git a/README.md b/README.md index 017e2ecb8..da56c021f 100644 --- a/README.md +++ b/README.md @@ -498,15 +498,15 @@ For the old logging package `github.com/siddontang/go-log/log`, a converting pac ## How to migrate to this repo To change the used package in your repo it's enough to add this `replace` directive to your `go.mod`: ``` -replace github.com/siddontang/go-mysql => github.com/go-mysql-org/go-mysql v1.12.0 +replace github.com/siddontang/go-mysql => github.com/go-mysql-org/go-mysql v1.13.0 ``` This can be done by running this command: ``` -go mod edit -replace=github.com/siddontang/go-mysql=github.com/go-mysql-org/go-mysql@v1.12.0 +go mod edit -replace=github.com/siddontang/go-mysql=github.com/go-mysql-org/go-mysql@v1.13.0 ``` -v1.12.0 - is the last tag in repo, feel free to choose what you want. +v1.13.0 - is the last tag in repo, feel free to choose what you want. ## Credits