From 10c997552e5c1c70a8bca93830031a875f9bec63 Mon Sep 17 00:00:00 2001 From: acheron <98934430+acheroncrypto@users.noreply.github.com> Date: Tue, 23 Apr 2024 00:48:58 +0200 Subject: [PATCH] Add `anchor-derive-serde` crate to the publish script (#2924) --- CHANGELOG.md | 2 +- Makefile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24383bcc0..be8ca8aa9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ The minor version will be incremented upon a breaking change and the patch versi ### Fixes -- syn: Eliminate variable allocations that build up stack space for token extension code generation ([#2913](https://github.com/coral-xyz/anchor/pull/2913)). +- lang: Eliminate variable allocations that build up stack space for token extension code generation ([#2913](https://github.com/coral-xyz/anchor/pull/2913)). ### Breaking diff --git a/Makefile b/Makefile index 8d3c6d4e5..9ab0f0427 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,8 @@ publish: sleep 25 cd lang/derive/accounts/ && cargo publish && cd ../../../ sleep 25 + cd lang/derive/serde/ && cargo publish && cd ../../../ + sleep 25 cd lang/derive/space/ && cargo publish && cd ../../../ sleep 25 cd lang/attribute/access-control/ && cargo publish && cd ../../../