Skip to content

Commit d2af9de

Browse files
committed
Fix stale reference to v0.6.2
1 parent 7109941 commit d2af9de

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

blog/2026-02-21-new-website.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ Beyond visual design, the text content throughout this website, including this b
4949

5050
## What comes next
5151

52-
With the website redesign now complete, we are excited about what lies ahead for the CGP project. CGP v0.6.2 will introduce support for using [**implicit parameters** in plain Rust function syntax](https://github.com/contextgeneric/cgp/issues/194), a feature that bridges the gap between plain Rust functions and fully context-generic code. Keep watching this website for the upcoming release announcement!
52+
With the website redesign now complete, we are excited about what lies ahead for the CGP project. CGP v0.7.0 will introduce support for using [**implicit parameters** in plain Rust function syntax](https://github.com/contextgeneric/cgp/issues/194), a feature that bridges the gap between plain Rust functions and fully context-generic code. Keep watching this website for the upcoming release announcement!

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Even though the CGP project is officially still less than one year old, some of
5959

6060
## Blog Posts
6161

62-
The most accurate and up-to-date resources concerning CGP are currently available in the form of our [blog posts](/blog). Specifically, we recommend that the blog posts starting from the [**v0.6.2 release onward**](/blog/v0-6-1-release/) will give you a significantly more concise and modern explanation of what CGP is all about.
62+
The most accurate and up-to-date resources concerning CGP are currently available in the form of our [blog posts](/blog). Specifically, we recommend that the blog posts starting from the [**v0.7.0 release onward**](/blog/v0.7.0-release) will give you a significantly more concise and modern explanation of what CGP is all about.
6363

6464
## Hello World Tutorial
6565

docs/tutorials/area-calculation/context-generic-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ By the end of this tutorial, we will have defined `rectangle_area`, `scaled_rect
1010

1111
## Introducing `#[cgp_fn]` and `#[implicit]` arguments
1212

13-
CGP v0.6.2 introduces a new `#[cgp_fn]` macro, which we can apply to plain Rust functions and turn them into *context-generic* methods that accept *implicit arguments*. With that, we can rewrite the example `rectangle_area` function as follows:
13+
CGP v0.7.0 introduces a new `#[cgp_fn]` macro, which we can apply to plain Rust functions and turn them into *context-generic* methods that accept *implicit arguments*. With that, we can rewrite the example `rectangle_area` function as follows:
1414

1515
```rust
1616
#[cgp_fn]

0 commit comments

Comments
 (0)