Skip to content

Commit a533f40

Browse files
authored
Merge pull request #101 from earthstar-project/releases-april-25
Updates for April 25 releases
2 parents 454a9ee + 7eeb935 commit a533f40

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
willowtest/build
1+
willowtest/build
2+
build

willowtest/specs/more/changes.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,22 @@ export const changes: Expression = site_template({
2828
pinformative("Here we’ll share bits of news relevant to the Willow protocol, as well as improvements to the site. For example, the completion of an implementation, or the addition of new explanatory text and drawings to the site. Updates will be occasional and meaningful."),
2929
pinformative(link("RSS feed available here", "/rss_news.xml"), "."),
3030
lis(
31+
create_news_item(
32+
{
33+
name: 'april_25_crates', title: "Rust persistent data store released", pubDate: new Date(2025, 3, 9)
34+
},
35+
[
36+
pinformative("We have released a new crate which implements a persistent Willow data ", r("store"), ". The source can be found at ", link("the willow-rs repository", "https://github.com/earthstar-project/willow-rs"), ", and complete documentation can be found at ", link("docs.rs", "https://docs.rs/willow-store-simple-sled/0.1.0/willow_store_simple_sled/"), "."),
37+
pinformative("In addition, we have also released a new crate with recommended parameters for the ", link_name("data_model", "Willow Data Model"), " and ", link_name("meadowcap", "Meadowcap"), ". We are referring to this set of recommend parameters as ", em("Willowʼ25"), " and will have more information available on this site soon. In the meantime, you can read documentation for the new crate over at ", link("docs.rs", "https://docs.rs/willow_25/0.1.0/willow_25/")),
38+
pinformative("Finally, we have published 0.2.0 versions for the ", link("willow-data-model", "https://docs.rs/willow-data-model/0.2.0/willow_data_model/"), " and ", link("meadowcap", "https://docs.rs/meadowcap/0.2.0/meadowcap/"), " crates with many new improvments, including a new ", link(code("Store"), "https://docs.rs/willow-data-model/0.2.0/willow_data_model/trait.Store.html"), " trait which can be used to implement Willow-compatible data storage.")
39+
]
40+
),
3141
create_news_item(
3242
{
3343
name: 'meadowcap_rs_0_1_0', title: "Rust implementation of Meadowcap released", pubDate: new Date(2024, 7, 10)
3444
},
3545
[
36-
pinformative("Our own ", em("Rust"), " implementation of ", link_name("meadowcap", "Meadowcap"), " now conforms to the specification as of August 10th, 2024. The source, can be found at ", link("the willow-rs repository", "https://github.com/earthstar-project/willow-rs"), ", and complete documentation can be found at ", link("docs.rs", "https://docs.rs/meadowcap/0.1.0/meadowcap/"), ".")
46+
pinformative("Our own ", em("Rust"), " implementation of ", link_name("meadowcap", "Meadowcap"), " now conforms to the specification as of August 10th, 2024. The source can be found at ", link("the willow-rs repository", "https://github.com/earthstar-project/willow-rs"), ", and complete documentation can be found at ", link("docs.rs", "https://docs.rs/meadowcap/0.1.0/meadowcap/"), ".")
3747
],
3848
),
3949
create_news_item(

willowtest/specs/more/projects_and_communities.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ export const projects_and_communities: Expression = site_template(
2626

2727
pinformative("We are currently working on ", link("Rust implementations of the Willow specifications", "https://github.com/earthstar-project/willow-rs"), ", with our work funded by ", link("NGI Core", "https://nlnet.nl/core/"), ". As the time of writing, we have released the following crates:"),
2828
lis(
29-
link("willow-data-model", "https://docs.rs/willow-data-model/0.1.0/willow_data_model/"),
30-
link("meadowcap", "https://docs.rs/meadowcap/0.1.0/meadowcap/")
29+
link("willow-data-model", "https://docs.rs/willow-data-model/0.2.0/willow_data_model/"),
30+
link("meadowcap", "https://docs.rs/meadowcap/0.2.0/meadowcap/"),
31+
link("willow_25", "https://docs.rs/willow_25/0.1.0/willow_25/"),
32+
link("willow-store-simple-sled", "https://docs.rs/willow-store-simple-sled/0.1.0/willow_store_simple_sled/")
3133
),
3234
]),
3335

0 commit comments

Comments
 (0)