Skip to content

Commit 3951461

Browse files
committed
Update README.md; add CHANGELOG.md
1 parent 5aafa69 commit 3951461

File tree

2 files changed

+39
-7
lines changed

2 files changed

+39
-7
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
### Tag v1.1.1 (2021.04.08)
2+
* Restructured dump/ tests. [#563](https://github.com/go-mysql-org/go-mysql/pull/563) ([atercattus](https://github.com/atercattus))
3+
* Replace magic numbers in canal/canal_test.go by constants. [#562](https://github.com/go-mysql-org/go-mysql/pull/562) ([atercattus](https://github.com/atercattus))
4+
* Fix parsing GTIDs from mysqlpdump. [#561](https://github.com/go-mysql-org/go-mysql/pull/561) ([dobegor](https://github.com/dobegor))
5+
* Streaming of SELECT responses. `client/Conn.ExecuteSelectStreaming()` added. [#560](https://github.com/go-mysql-org/go-mysql/pull/560) ([atercattus](https://github.com/atercattus))
6+
* Migation from travis.ci to github actions. [#559](https://github.com/go-mysql-org/go-mysql/pull/559) ([atercattus](https://github.com/atercattus))
7+
* Output sorted mysql gtid. [#500](https://github.com/go-mysql-org/go-mysql/pull/500) ([zr-hebo](https://github.com/zr-hebo))
8+
* Add skipped columns information. [#505](https://github.com/go-mysql-org/go-mysql/pull/505) ([laskoviymishka](https://github.com/laskoviymishka))
9+
* Feat: support disable retry sync for canal. [#507](https://github.com/go-mysql-org/go-mysql/pull/507) ([everpcpc](https://github.com/everpcpc))
10+
* Update README.md. [#511](https://github.com/go-mysql-org/go-mysql/pull/511) ([TennyZhuang](https://github.com/TennyZhuang))
11+
* Add function to extend replication options. [#508](https://github.com/go-mysql-org/go-mysql/pull/508) ([wefen](https://github.com/wefen))
12+
13+
### Tag v1.1.0 (2020.07.17)
14+
* Update .travis.yml (go 1.14 and tip). [#510](https://github.com/go-mysql-org/go-mysql/pull/510) ([atercattus](https://github.com/atercattus))
15+
* Update README.md. [#509](https://github.com/go-mysql-org/go-mysql/pull/509) ([atercattus](https://github.com/atercattus))
16+
* A lot of memory allocation optimizations. Changed public API for `mysql/Resultset` type. [#466](https://github.com/go-mysql-org/go-mysql/pull/466) ([atercattus](https://github.com/atercattus))
17+
18+
### Tag v1.0.0 (2020.07.17)
19+
Add SemVer

README.md

+20-7
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,29 @@
22

33
A pure go library to handle MySQL network protocol and replication.
44

5-
## Call for Committer/Maintainer
5+
![semver](https://img.shields.io/github/v/tag/go-mysql-org/go-mysql)
6+
![example workflow](https://github.com/go-mysql-org/go-mysql/actions/workflows/ci.yml/badge.svg)
7+
![gomod version](https://img.shields.io/github/go-mod/go-version/go-mysql-org/go-mysql/master)
68

7-
Sorry that I have no enough time to maintain this project wholly, if you like this project and want to help me improve it continuously, please contact me through email ([email protected]).
9+
## How to migrate to this repo
10+
To change the used package in your repo it's enough to add this `replace` directive to your `go.mod`:
11+
```
12+
replace github.com/siddontang/go-mysql => github.com/go-mysql-org/go-mysql v1.1.1
13+
```
14+
15+
v.1.1.1 - is the last tag in repo, feel free to choose what you want.
816

9-
Requirement: In the email, you should list somethings(including but not limited to below) to make me believe we can work together.
17+
## Changelog
18+
This repo uses [Changelog](CHANGELOG.md).
1019

11-
+ Your GitHub ID
12-
+ The contributions to go-mysql before, including PRs or Issues.
13-
+ The reason why you can improve go-mysql.
14-
20+
---
21+
# Content
22+
* [Slave replication](#replication)
23+
* [Incremental dumping](#canal)
24+
* [Client](#client)
25+
* [Fake server](#server)
26+
* [Failover](#failover)
27+
* [database/sql like driver](#driver)
1528

1629
## Replication
1730

0 commit comments

Comments
 (0)