From bd433add53a35dcd6c50d4a71c6cedaafc7e96a2 Mon Sep 17 00:00:00 2001 From: Mikael Berthe Date: Sun, 30 Jun 2024 16:26:45 +0200 Subject: [PATCH] Version 3.0.0 --- madon.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/madon.go b/madon.go index b8c2822..e1b9298 100644 --- a/madon.go +++ b/madon.go @@ -13,9 +13,9 @@ import ( // LimitParams contains common limit/paging options for the Mastodon REST API type LimitParams struct { - Limit int // Number of items per query + Limit int // Number of items per query SinceID, MaxID ActivityID // Boundaries - All bool // Get as many items as possible + All bool // Get as many items as possible } // apiCallParams is a map with the parameters for an API call @@ -23,7 +23,7 @@ type apiCallParams map[string]string const ( // MadonVersion contains the version of the Madon library - MadonVersion = "3.0.0-dev" + MadonVersion = "3.0.0" currentAPIPath = "/api"