Skip to content

Commit

Permalink
v0.26.0 (#2315)
Browse files Browse the repository at this point in the history
* v0.26.0

* update packages

* typedocs

Co-authored-by: henrye <henry@notanemail>
  • Loading branch information
Henry-E and henrye authored Dec 15, 2022
1 parent b00fe70 commit 347c225
Show file tree
Hide file tree
Showing 81 changed files with 231 additions and 286 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ The minor version will be incremented upon a breaking change and the patch versi

## [Unreleased]

## [0.26.0] - 2022-12-15

### Features

- cli: Add `--run` to `anchor test` for running a subset of test suites ([#1828](https://github.com/project-serum/anchor/issues/1828)).
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.25.0
0.26.0
2 changes: 1 addition & 1 deletion avm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion avm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avm"
version = "0.25.0"
version = "0.26.0"
rust-version = "1.59"
edition = "2021"

Expand Down
8 changes: 4 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "anchor-cli"
version = "0.25.0"
version = "0.26.0"
authors = ["armaniferrante <armaniferrante@gmail.com>"]
rust-version = "1.59"
edition = "2021"
Expand All @@ -20,9 +20,9 @@ default = []
clap = { version = "4.0.26", features = ["derive"] }
anyhow = "1.0.32"
syn = { version = "1.0.60", features = ["full", "extra-traits"] }
anchor-lang = { path = "../lang", version = "0.25.0" }
anchor-client = { path = "../client", version = "0.25.0" }
anchor-syn = { path = "../lang/syn", features = ["idl", "init-if-needed"], version = "0.25.0" }
anchor-lang = { path = "../lang", version = "0.26.0" }
anchor-client = { path = "../client", version = "0.26.0" }
anchor-syn = { path = "../lang/syn", features = ["idl", "init-if-needed"], version = "0.26.0" }
serde_json = "1.0"
shellexpand = "2.1.0"
toml = "0.5.8"
Expand Down
2 changes: 1 addition & 1 deletion cli/npm-package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@project-serum/anchor-cli",
"version": "0.25.0",
"version": "0.26.0",
"description": "Anchor CLI tool",
"homepage": "https://github.com/coral-xyz/anchor#readme",
"bugs": {
Expand Down
4 changes: 2 additions & 2 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "anchor-client"
version = "0.25.0"
version = "0.26.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
rust-version = "1.59"
edition = "2021"
Expand All @@ -11,7 +11,7 @@ description = "Rust client for Anchor programs"
debug = []

[dependencies]
anchor-lang = { path = "../lang", version = "0.25.0" }
anchor-lang = { path = "../lang", version = "0.26.0" }
anyhow = "1.0.32"
regex = "1.4.5"
serde = { version = "1.0.122", features = ["derive"] }
Expand Down
4 changes: 3 additions & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"publish:typedoc": "gh-pages -d ./src/.vuepress/dist"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
Expand All @@ -19,6 +20,7 @@
"autoprefixer": "^10.4.7",
"clsx": "^1.2.1",
"focus-visible": "^5.2.0",
"gh-pages": "^4.0.0",
"next": "12.2.1",
"next-plausible": "^3.2.0",
"postcss-focus-visible": "^6.0.4",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Anchor binaries are available via an NPM package [`@project-serum/anchor-cli`](h
We can also use Cargo to install the CLI directly. Make sure that the `--tag` argument uses the version you want (the version here is just an example).

```shell
cargo install --git https://github.com/coral-xyz/anchor --tag v0.25.0 anchor-cli --locked
cargo install --git https://github.com/coral-xyz/anchor --tag v0.26.0 anchor-cli --locked
```

On Linux systems you may need to install additional dependencies if cargo install fails. On Ubuntu,
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/docs/publishing-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ have an `Anchor.toml` to define the build.
An example `Anchor.toml` config looks as follows,

```toml
anchor_version = "0.25.0"
anchor_version = "0.26.0"

[workspace]
members = ["programs/multisig"]
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The minor version will be incremented upon a breaking change and the patch versi

---

## [0.25.0] - 2022-07-05
## [0.26.0] - 2022-07-05

### Features

Expand Down
4 changes: 2 additions & 2 deletions docs/src/pages/docs/verifiable-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ If the program has an IDL, it will also check the IDL deployed on chain matches.

## Images

A docker image for each version of Anchor is published on [Docker Hub](https://hub.docker.com/r/projectserum/build). They are tagged in the form `projectserum/build:<version>`. For example, to get the image for Anchor `v0.25.0` one can run
A docker image for each version of Anchor is published on [Docker Hub](https://hub.docker.com/r/projectserum/build). They are tagged in the form `projectserum/build:<version>`. For example, to get the image for Anchor `v0.26.0` one can run

```shell
docker pull projectserum/build:v0.25.0
docker pull projectserum/build:v0.26.0
```

## Removing an Image
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorial/basic-0/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "basic-0",
"version": "0.25.0",
"version": "0.26.0",
"license": "(MIT OR Apache-2.0)",
"homepage": "https://github.com/coral-xyz/anchor#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorial/basic-1/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "basic-1",
"version": "0.25.0",
"version": "0.26.0",
"license": "(MIT OR Apache-2.0)",
"homepage": "https://github.com/coral-xyz/anchor#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorial/basic-2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "basic-2",
"version": "0.25.0",
"version": "0.26.0",
"license": "(MIT OR Apache-2.0)",
"homepage": "https://github.com/coral-xyz/anchor#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorial/basic-3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "basic-3",
"version": "0.25.0",
"version": "0.26.0",
"license": "(MIT OR Apache-2.0)",
"homepage": "https://github.com/coral-xyz/anchor#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorial/basic-4/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "basic-4",
"version": "0.25.0",
"version": "0.26.0",
"license": "(MIT OR Apache-2.0)",
"homepage": "https://github.com/coral-xyz/anchor#readme",
"bugs": {
Expand Down
Loading

1 comment on commit 347c225

@vercel
Copy link

@vercel vercel bot commented on 347c225 Dec 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

anchor-docs – ./

anchor-docs-200ms.vercel.app
anchor-docs-git-master-200ms.vercel.app
www.anchor-lang.com
anchor-lang.com

Please sign in to comment.