vendor/github.com/McKael/madon/v3/madon.go
changeset 276 15f5ac844492
parent 270 df7e9dff1b66
--- a/vendor/github.com/McKael/madon/v3/madon.go	Sat Jun 29 20:19:47 2024 +0200
+++ b/vendor/github.com/McKael/madon/v3/madon.go	Sun Jun 30 16:54:27 2024 +0200
@@ -13,9 +13,9 @@
 
 // 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 @@
 
 const (
 	// MadonVersion contains the version of the Madon library
-	MadonVersion = "3.0.0-dev"
+	MadonVersion = "3.0.0"
 
 	currentAPIPath = "/api"