From c7f6ad704802ab30cf7fbf7fe481b9a217770fea Mon Sep 17 00:00:00 2001 From: Masaaki Goshima Date: Mon, 22 Mar 2021 22:16:59 +0900 Subject: [PATCH] Update README.md --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index ae25fe2..d4288a0 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,34 @@ Fast JSON encoder/decoder compatible with encoding/json for Go +# Roadmap + +``` +* version ( expected release date ) + +* v0.4.x + | + | implement all features that exist in encoding/json and fix bugs and stabilize. + | + v +* v0.5.0 ( 2021/04 Mid ) + | + | refactor all sources for maintainability + | + v +* v0.6.0 ( 2021/05 Mid ) + | + | while maintaining compatibility with encoding/json, we will add convenient APIs + | + v +* v1.0.0 ( 2021/06 Mid ) +``` + +We are accepting requests for features that will be implemented between v0.6.0 and v.1.0.0. +If you have the API you need, please submit your issue [here](https://github.com/goccy/go-json/issues). +For example, I'm thinking of supporting `context.Context` of `json.Marshaler` and decoding using JSON Path. + + # Installation ```