Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set version to 1.0.0 (release candidate) #74

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
⚠️ This spec suite is Work-in-Progress. It may be useful for reference & discussion, though ⚠️

# Webnative File System (WNFS) Specification v0.2.0-alpha
# Webnative File System (WNFS) Specification `v1.0.0-rc`

## Abstract

Expand Down
4 changes: 2 additions & 2 deletions spec/private-wnfs.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ type PrivateNode

type PrivateDirectory = {
"wnfs/priv/dir": {
version: "0.2.0"
version: "1.0.0"
headerCid: Cid
previous: Array<PrivateBacklink>

Expand All @@ -154,7 +154,7 @@ type PrivateRef = {

type PrivateFile = {
"wnfs/priv/file": {
version: "0.2.0"
version: "1.0.0"
headerCid: Cid
previous: Array<PrivateBacklink>

Expand Down
4 changes: 2 additions & 2 deletions spec/public-wnfs.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type PublicNode

type PublicDirectory = {
"wnfs/pub/dir": {
version: "0.2.0"
version: "1.0.0"
previous: Array<Cid<Cbor<PublicDirectory>>>
// userland:
metadata: Metadata
Expand All @@ -33,7 +33,7 @@ type PublicSymlink = {

type PublicFile = {
"wnfs/pub/file": {
version: "0.2.0"
version: "1.0.0"
previous: Array<Cid<Cbor<PublicFile>>>
// userland:
metadata: Metadata
Expand Down