makefile and changelog misc updates (#1491)

This commit is contained in:
Armani Ferrante 2022-02-21 11:05:17 -05:00 committed by GitHub
parent 90fe5e95b0
commit a604f8595c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 15 deletions

View File

@ -11,13 +11,17 @@ incremented for features.
## [Unreleased]
### Fixes
* cli: Fix rust template ([#1488](https://github.com/project-serum/anchor/pull/1488)).
## [0.22.0] - 2022-02-20
### Features
* lang: add check that declared id == program id ([#1451](https://github.com/project-serum/anchor/pull/1451))
* lang: Add check that declared id == program id ([#1451](https://github.com/project-serum/anchor/pull/1451)).
* ts: Added float types support ([#1425](https://github.com/project-serum/anchor/pull/1425)).
* cli: Add `--skip-lint` option to disable check linting introduced in ([#1452](https://github.com/project-serum/anchor/pull/1452)) for rapid prototyping ([#1482](https://github.com/project-serum/anchor/pull/1482))
* cli: Add `--skip-lint` option to disable check linting introduced in ([#1452](https://github.com/project-serum/anchor/pull/1452)) for rapid prototyping ([#1482](https://github.com/project-serum/anchor/pull/1482)).
### Fixes

View File

@ -53,27 +53,27 @@ clean:
.PHONY: publish
publish:
cd lang/syn/ && cargo publish && cd ../../
sleep 10
sleep 25
cd lang/derive/accounts/ && cargo publish && cd ../../../
sleep 10
sleep 25
cd lang/attribute/access-control/ && cargo publish && cd ../../../
sleep 10
sleep 25
cd lang/attribute/account/ && cargo publish && cd ../../../
sleep 10
sleep 25
cd lang/attribute/constant/ && cargo publish && cd ../../../
sleep 10
sleep 25
cd lang/attribute/error/ && cargo publish && cd ../../../
sleep 10
sleep 25
cd lang/attribute/interface/ && cargo publish && cd ../../../
sleep 10
sleep 25
cd lang/attribute/program/ && cargo publish && cd ../../..
sleep 10
sleep 25
cd lang/attribute/state/ && cargo publish && cd ../../../
sleep 10
sleep 25
cd lang/attribute/event/ && cargo publish && cd ../../../
sleep 10
sleep 25
cd lang/ && cargo publish && cd../
sleep 10
sleep 25
cd spl/ && cargo publish && cd ../
sleep 10
sleep 25
cd client/ && cargo publish && cd ../