From 184cbd07c414f52b51852e71df884666609c4798 Mon Sep 17 00:00:00 2001 From: Alexander Mac Date: Tue, 5 Dec 2023 21:05:23 +0300 Subject: [PATCH] release v0.3.0 --- CHANGELOG.md | 5 +++++ README.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a46321f..afdf70c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.3.0 +#### _Dec. 5, 2023_ +* Add option to download the changelog content. +* Use resty instead of net/http. + ## v0.2.0 #### _Sep. 27, 2023_ * BREAKING_CHANGE: Delete the `logger` parameter from the `gosu.New` function. To set a custom logger now the new `SetLogger` function should be used, it accepts a struct satisfying the `Logger` interface. diff --git a/README.md b/README.md index b2190a4..6531619 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ gosu := gosu.New( ``` ##### SetLogger(l Logger) -Sets a custom logger instead a standard `log`, used by default. The provided logger must satisfy the `Logger` interface. +Sets a custom logger instead of the standard `log`, used by default. The provided logger must satisfy the `Logger` interface. ```go gosu.SetLogger(logrus.StandardLogger())