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

[spec] Bump release to 2 #1443

Merged
merged 1 commit into from
Apr 16, 2022
Merged
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
2 changes: 1 addition & 1 deletion document/core/appendix/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Change History
Since the original release 1.0 of the WebAssembly specification, a number of proposals for extensions have been integrated.
The following sections provide an overview of what has changed.

Release 1.1
Release 2.0
~~~~~~~~~~~

.. index:: instruction, integer
Expand Down
6 changes: 3 additions & 3 deletions document/core/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# If your documentation needs a minimal Sphinx version, state it here.
#
needs_sphinx = '1.4'
needs_sphinx = '2.3'

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
Expand Down Expand Up @@ -60,7 +60,7 @@
name = 'WebAssembly'
project = u'WebAssembly'
title = u'WebAssembly Specification'
copyright = u'2017, WebAssembly Community Group'
copyright = u'2022, WebAssembly Community Group'
author = u'WebAssembly Community Group'
editor = u'Andreas Rossberg (editor)'
logo = 'static/webassembly.png'
Expand All @@ -79,7 +79,7 @@
# built documents.
#
# The short X.Y version.
version = u'1.1'
version = u'2.0'
# The full version, including alpha/beta/rc tags.
release = version + ('' if proposal == '' else ' + ') + proposal + draft

Expand Down
6 changes: 3 additions & 3 deletions document/core/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Title: WebAssembly Core Specification
Shortname: wasm-core
Group: wasm
Status: ED
Level: 1
TR: https://www.w3.org/TR/wasm-core-1/
Level: 2
TR: https://www.w3.org/TR/wasm-core-2/
ED: https://webassembly.github.io/spec/core/bikeshed/
Editor: Andreas Rossberg (Dfinity Stiftung)
Repository: WebAssembly/spec
Markup Shorthands: css no, markdown no, algorithm no, idl no
Abstract: This document describes version 1.1 of the core WebAssembly standard, a safe, portable, low-level code format designed for efficient execution and compact representation.
Abstract: This document describes version 2.0 of the core WebAssembly standard, a safe, portable, low-level code format designed for efficient execution and compact representation.
Prepare For TR: true
</pre>

Expand Down
4 changes: 2 additions & 2 deletions document/js-api/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Title: WebAssembly JavaScript Interface
Shortname: wasm-js-api
Group: wasm
Status: ED
Level: 1
TR: https://www.w3.org/TR/wasm-js-api-1/
Level: 2
TR: https://www.w3.org/TR/wasm-js-api-2/
ED: https://webassembly.github.io/spec/js-api/
Editor: Ms2ger, Igalia
Repository: WebAssembly/spec
Expand Down
4 changes: 2 additions & 2 deletions document/web-api/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Title: WebAssembly Web API
Shortname: wasm-web-api
Group: wasm
Status: ED
Level: 1
TR: https://www.w3.org/TR/wasm-web-api-1/
Level: 2
TR: https://www.w3.org/TR/wasm-web-api-2/
ED: https://webassembly.github.io/spec/web-api/
Editor: Ms2ger, Igalia
Repository: WebAssembly/spec
Expand Down
2 changes: 1 addition & 1 deletion interpreter/main/main.ml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let name = "wasm"
let version = "1.1"
let version = "2.0"

let configure () =
Import.register (Utf8.decode "spectest") Spectest.lookup;
Expand Down