diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+* 0.3.0 (2023-09-28)
+
+  - GHC 8.x is no longer tested, the minimum version is 9.2.8
+  - Various fixes the Jaeger backend
+  - Fix Zipkin backend to use POST (#49)
+  - Use a bounded queue for the batch reporter (#46)
+
+  This release is considered _breaking_ due to #46, and (potential)
+  incompatibility with older GHCs.
+
 * 0.2.2 (2022-05-09)
 
   Support for base 4.16 / GHC 9.2
diff --git a/OpenTracing/Zipkin/V2/HttpReporter.hs b/OpenTracing/Zipkin/V2/HttpReporter.hs
--- a/OpenTracing/Zipkin/V2/HttpReporter.hs
+++ b/OpenTracing/Zipkin/V2/HttpReporter.hs
@@ -95,7 +95,7 @@
   where
     mkReq = do
         rq <- parseRequest endpoint
-        return rq { requestHeaders = [(hContentType, "application/json")] }
+        return rq { method = "POST", requestHeaders = [(hContentType, "application/json")] }
 
 closeZipkin :: Zipkin -> IO ()
 closeZipkin = closeBatchEnv . fromZipkin
diff --git a/opentracing-zipkin-v2.cabal b/opentracing-zipkin-v2.cabal
--- a/opentracing-zipkin-v2.cabal
+++ b/opentracing-zipkin-v2.cabal
@@ -1,13 +1,13 @@
 cabal-version: 2.2
 
 name:           opentracing-zipkin-v2
-version:        0.2.2
+version:        0.3.0
 synopsis:       Zipkin V2 backend for OpenTracing
 homepage:       https://github.com/kim/opentracing
 bug-reports:    https://github.com/kim/opentracing/issues
 author:         Kim Altintop
-maintainer:     Kim Altintop <kim.altintop+opentracing@gmail.com>
-copyright:      Copyright (c) 2017-2018 Kim Altintop
+maintainer:     Kim Altintop <kim@eagain.io>
+copyright:      Copyright (c) 2017-2023 Kim Altintop
 license:        Apache-2.0
 license-file:   LICENSE
 build-type:     Simple
@@ -36,7 +36,7 @@
     -Wnoncanonical-monad-instances
   build-depends:
       aeson >= 1.1
-    , base >= 4.9 && < 4.17
+    , base >= 4.9 && < 4.19
     , base64-bytestring >= 1.0
     , bytestring >= 0.10
     , exceptions >= 0.8
