From 9c9af9a98433195bc9d6f5b8e35b6ca0ab25cc5b Mon Sep 17 00:00:00 2001 From: Stephen Eckels Date: Thu, 8 Feb 2024 13:52:16 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ccbc9eb..c82ccfd 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ As the Go compiler and runtime have changed, so have the embedded metadata struc The `moduledata` table used to extract types doesn't exist prior to Go 1.5, so this library will never support extracting types from very old Go versions. -This library current handles legacy `pclntab` (pre Go 1.2), 1.2, 1.16, 1.18, 1.19, and 1.20. +This library current handles legacy `pclntab` (pre Go 1.2), 1.2, 1.16, 1.18, 1.19, 1.20, 1.21, 1.22. # Contributions Much of the source code from GoReSym is copied from the upstream Go compiler source directory `/internal`. To make this work, we've had to massage the source a bit. If you want to contribute to GoReSym, read on so we can explain this import process.